diff --git a/internal/manager/api_impl/meta.go b/internal/manager/api_impl/meta.go index 9918e64c..f346b228 100644 --- a/internal/manager/api_impl/meta.go +++ b/internal/manager/api_impl/meta.go @@ -95,7 +95,7 @@ func (f *Flamenco) CheckSharedStoragePath(e echo.Context) error { // Check for emptyness. if path == "" { - return mkError("An empty path is never suitable as shared storage") + return mkError("An empty path is not suitable as shared storage") } // Check whether it is actually a directory. diff --git a/internal/manager/api_impl/meta_test.go b/internal/manager/api_impl/meta_test.go index d21251be..56b6b000 100644 --- a/internal/manager/api_impl/meta_test.go +++ b/internal/manager/api_impl/meta_test.go @@ -83,7 +83,7 @@ func TestCheckSharedStoragePath(t *testing.T) { assertResponseJSON(t, echoCtx, http.StatusOK, api.PathCheckResult{ Path: "", IsUsable: false, - Cause: "An empty path is never suitable as shared storage", + Cause: "An empty path is not suitable as shared storage", }) // Test usable path (well, at least readable & writable; it may not be shared via Samba/NFS). diff --git a/web/app/package.json b/web/app/package.json index 50286456..9420150f 100644 --- a/web/app/package.json +++ b/web/app/package.json @@ -19,6 +19,7 @@ }, "dependencies": { "luxon": "^2.3.1", + "microtip": "^0.2.2", "pinia": "^2.0.13", "socket.io-client": "2", "superagent": "^7.1.2", diff --git a/web/app/public/architecture.png b/web/app/public/architecture.png new file mode 100644 index 00000000..925b0030 Binary files /dev/null and b/web/app/public/architecture.png differ diff --git a/web/app/src/components/steps/StepItem.vue b/web/app/src/components/steps/StepItem.vue index e1ecf4c4..c2b9fee3 100644 --- a/web/app/src/components/steps/StepItem.vue +++ b/web/app/src/components/steps/StepItem.vue @@ -1,13 +1,39 @@ diff --git a/web/app/src/components/steps/StepsWrapper.vue b/web/app/src/components/steps/StepsWrapper.vue deleted file mode 100644 index a65bf438..00000000 --- a/web/app/src/components/steps/StepsWrapper.vue +++ /dev/null @@ -1,125 +0,0 @@ - - - - - diff --git a/web/app/src/views/FirstTimeWizardView.vue b/web/app/src/views/FirstTimeWizardView.vue index 65f4cc97..5b0b4dcb 100644 --- a/web/app/src/views/FirstTimeWizardView.vue +++ b/web/app/src/views/FirstTimeWizardView.vue @@ -1,60 +1,125 @@