Skip to content

Commit

Permalink
app/coreconfigpanel: fix 'visible' for show_tile for non-webapps
Browse files Browse the repository at this point in the history
  • Loading branch information
alexAubin committed Feb 25, 2025
1 parent dd1002c commit 746d08d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2245,7 +2245,7 @@ def _get_raw_settings(self) -> "RawSettings":
}
else:
raw_settings[f"permission_{perm}_location"] = {"visible": False}
raw_settings[f"permission_{perm}_show_tile"]["visible"] = False
raw_settings[f"permission_{perm}_show_tile"] = {"value": False, "visible": False}
raw_settings[f"permission_{perm}_url"] = infos.get("url") or ""
if infos.get("logo_hash"):
raw_settings[f"permission_{perm}_logo"] = (
Expand Down

0 comments on commit 746d08d

Please sign in to comment.