improvements in mobile layout for launchbar

This commit is contained in:
zadam
2022-12-12 23:48:34 +01:00
parent d1b989ac12
commit 2957e1d78a
10 changed files with 51 additions and 18 deletions

View File

@@ -32,8 +32,11 @@ export default class LauncherContainer extends FlexContainer {
.map(async launcherNote => {
try {
const launcherWidget = new LauncherWidget();
await launcherWidget.initLauncher(launcherNote);
this.child(launcherWidget);
const success = await launcherWidget.initLauncher(launcherNote);
if (success) {
this.child(launcherWidget);
}
}
catch (e) {
console.error(e);