diff --git a/cmd b/cmd index 6afe6c4c2..4c152e94d 100755 --- a/cmd +++ b/cmd @@ -1,7 +1,7 @@ #!/bin/bash #cached execution -if [ -z "$CACHED_EXECUTION" ]; then +if [ -z "$CACHED_EXECUTION" ] && [ "$1" == "update" ]; then cat "$0" > ._cmd chmod +x ._cmd export CACHED_EXECUTION=1 diff --git a/resources/assets/js/pages/manage.vue b/resources/assets/js/pages/manage.vue index 3f9992483..71d43f8bb 100644 --- a/resources/assets/js/pages/manage.vue +++ b/resources/assets/js/pages/manage.vue @@ -1193,8 +1193,9 @@ export default { case 'appstore': this.$store.dispatch("openMicroApp", { name: 'appstore', - url: 'http://localhost:5173/', + url: 'appstore/web/', disableScopecss: true, + autoDarkTheme: false, }); break; }