asab_webui_shell 27.4.3 → 27.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -514,8 +514,10 @@ class Application extends _react.Component {
|
|
|
514
514
|
this.setFullScreenMode('on');
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
+
// TODO: Remove CTRL+Q and CTRL+1 by May of 2027
|
|
518
|
+
// CTRL+SHIFT+U (Chrome, Firefox and Safari on Windows, Linux and MacOS)
|
|
517
519
|
// CTRL+Q (Windows) or CTRL+1 (Linux) enables the advanced mode
|
|
518
|
-
if (event.ctrlKey && event.code === 'KeyQ' || event.code === 'Digit1' && event.ctrlKey) {
|
|
520
|
+
if (event.ctrlKey && event.code === 'KeyQ' || event.code === 'Digit1' && event.ctrlKey || event.ctrlKey && event.shiftKey && event.code === 'KeyU') {
|
|
519
521
|
this.setAdvancedMode(0);
|
|
520
522
|
}
|
|
521
523
|
}
|
|
@@ -690,9 +692,9 @@ class Application extends _react.Component {
|
|
|
690
692
|
enabled: enabled
|
|
691
693
|
});
|
|
692
694
|
if (enabled) {
|
|
693
|
-
this.addAlert('warning', "ASABApplicationContainer|Advanced mode enabled",
|
|
695
|
+
this.addAlert('warning', "ASABApplicationContainer|Advanced mode enabled", 2, true);
|
|
694
696
|
} else {
|
|
695
|
-
this.addAlert('success', "ASABApplicationContainer|Advanced mode disabled",
|
|
697
|
+
this.addAlert('success', "ASABApplicationContainer|Advanced mode disabled", 2, true);
|
|
696
698
|
}
|
|
697
699
|
}
|
|
698
700
|
|