Move user settings menu to react (#6675)

* Move user settings menu to react

* Add default href value to LinkButton

* Use loading component while data is pending
This commit is contained in:
Bill Thornton
2025-04-01 15:10:30 -04:00
committed by GitHub
parent 2685950934
commit d4995834df
12 changed files with 393 additions and 229 deletions
+5
View File
@@ -10,6 +10,11 @@ export default {
window.NativeShell.disableFullscreen();
}
},
openClientSettings: () => {
if (window.NativeShell?.openClientSettings) {
window.NativeShell.openClientSettings();
}
},
openUrl: function(url, target) {
if (window.NativeShell?.openUrl) {
window.NativeShell.openUrl(url, target);