{{ props.status.name }}
diff --git a/web/src/components/ProjectCreateFlow.vue b/web/src/components/ProjectCreateFlow.vue
index b24acef..b9836e9 100644
--- a/web/src/components/ProjectCreateFlow.vue
+++ b/web/src/components/ProjectCreateFlow.vue
@@ -58,7 +58,7 @@ async function onSubmit() {
-
create
+
create
diff --git a/web/src/components/StatusMenu.vue b/web/src/components/StatusMenu.vue
index 60e19b9..d3ffa32 100644
--- a/web/src/components/StatusMenu.vue
+++ b/web/src/components/StatusMenu.vue
@@ -22,7 +22,7 @@ function onSelect(status: Status) {
- {{ selected?.name }}
+ {{ selected?.name }}
diff --git a/web/src/main.ts b/web/src/main.ts
index ea45818..3972251 100644
--- a/web/src/main.ts
+++ b/web/src/main.ts
@@ -30,12 +30,12 @@ const vuetify = createVuetify({
},
VToolbar: { density: 'compact' },
VRow: { dense: true },
- VSheet: { border: true, rounded: true },
+ VSheet: { rounded: true },
VList: { density: 'compact' },
// VCard: { variant: 'outlined' },
VChip: { density: 'compact', variant: 'outlined', label: true },
VNumberInput: { hideDetails: true, variant: 'outlined', density: 'compact' },
- VBtn: { variant: 'tonal', density: 'compact' },
+ VBtn: { variant: 'outlined', density: 'compact' },
VTextField: { variant: 'outlined', density: 'compact', hideDetails: false },
VSelect: { variant: 'outlined', density: 'compact', hideDetails: false },
VTextarea: { hideDetails: true, variant: 'outlined', density: 'compact' },
diff --git a/web/src/views/IssuesRootView.vue b/web/src/views/IssuesRootView.vue
index 07f2ca4..fe0fe63 100644
--- a/web/src/views/IssuesRootView.vue
+++ b/web/src/views/IssuesRootView.vue
@@ -92,7 +92,7 @@ watchEffect(() => issuesStore.genIssuesObj(statuses.value))
-
+
{{ projectsStore.projects[0]?.name }}
@@ -102,15 +102,13 @@ watchEffect(() => issuesStore.genIssuesObj(statuses.value))
-
-
-
+
diff --git a/web/src/views/ProjectRootView.vue b/web/src/views/ProjectRootView.vue
index a35dd30..a385db7 100644
--- a/web/src/views/ProjectRootView.vue
+++ b/web/src/views/ProjectRootView.vue
@@ -56,7 +56,7 @@ onMounted(async () => {})
-
+
Create project
@@ -69,11 +69,11 @@ onMounted(async () => {})
-
+
diff --git a/web/vite.config.ts b/web/vite.config.ts
index e6c21fa..952154d 100644
--- a/web/vite.config.ts
+++ b/web/vite.config.ts
@@ -7,6 +7,7 @@ import vue from '@vitejs/plugin-vue'
export default defineConfig({
server: {
host: '0.0.0.0',
+ port: 4000,
proxy: {
'/api': 'http://localhost:3000',
},