From 0f766cf977eb4f927db3e7d19bfcfa7e0e8eebbb Mon Sep 17 00:00:00 2001 From: cproudlock Date: Sun, 2 Aug 2026 18:56:38 -0400 Subject: [PATCH] fix(setup): stop the wizard step promising data it does not create The step was called "Starter Data" and offered to "seed the data a new site needs", but seed_starter inserts eight vendor rows and nothing else: no assets, locations, departments or statuses. An operator ran it, saw every dashboard count stay at zero, and reasonably concluded the seed was broken. Rename the step to Reference Data, describe what is actually seeded, and say outright that no assets are created and that an empty dashboard is expected here. Assets arrive later via the import API. --- frontend/src/views/SetupWizard.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/SetupWizard.vue b/frontend/src/views/SetupWizard.vue index 9151de6..4b94396 100644 --- a/frontend/src/views/SetupWizard.vue +++ b/frontend/src/views/SetupWizard.vue @@ -117,8 +117,9 @@
-

Starter data

-

Seed the data a new site needs. Both are idempotent - safe to run more than once.

+

Reference data

+

Seed the lookup data a new site needs: statuses, types, permissions, and a short list of common vendors. Both are idempotent - safe to run more than once.

+

This does not create any assets. The site starts empty and assets are loaded afterwards via the import API, so an empty dashboard here is expected.