fix: logins now refresh on plugins load
feat: Added tar archive support fix: Downloaded games and emulator execute permission now updated fix: Fixed rclone for linux fix: on screen keyaboard only now shows up when using a gamepad or touch
This commit is contained in:
parent
6aacec2c0d
commit
7bd0ebdcca
39 changed files with 523 additions and 275 deletions
|
|
@ -153,7 +153,7 @@ function WiFiStatus ()
|
|||
return systemContext && systemContext.wifiConnections.length > 0 ? <div>
|
||||
{systemContext.wifiConnections.map(w =>
|
||||
{
|
||||
const className = "w-6 h-6";
|
||||
const className = "w-10 h-10";
|
||||
let icon = <Wifi className={className} />;
|
||||
if (w.signalLevel >= -60)
|
||||
icon = <Wifi className={className} />;
|
||||
|
|
@ -164,7 +164,7 @@ function WiFiStatus ()
|
|||
else if (w.signalLevel >= -90)
|
||||
icon = <WifiZero className={className} />;
|
||||
|
||||
return <div className="tooltip" data-tip={w.signalLevel}>
|
||||
return <div className="tooltip tooltip-bottom" data-tip={w.signalLevel}>
|
||||
{icon}
|
||||
</div>;
|
||||
})}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue