diff --git a/web/src/components/HeaderBar.vue b/web/src/components/HeaderBar.vue
index e9c67d7..d6419e6 100644
--- a/web/src/components/HeaderBar.vue
+++ b/web/src/components/HeaderBar.vue
@@ -31,46 +31,24 @@
>
-
-
- addStartDate = undefined"
- readonly
- clearable
- hide-details
- >
-
-
-
-
+
-
-
- addStopDate = undefined"
- readonly
- clearable
- hide-details
- >
-
-
-
-
+
("");
// Date Picker
const addStartDate = ref();
-const addStartDateDisplay = computed(() =>
- addStartDate.value ? addStartDate.value.toLocaleDateString() : ""
-);
const addStopDate = ref();
-const addStopDateDisplay = computed(() =>
- addStopDate.value ? addStopDate.value.toLocaleDateString() : ""
-);
//
// EDIT SECTION
diff --git a/web/src/plugins/vuetify.ts b/web/src/plugins/vuetify.ts
index 27d13ef..ce81042 100644
--- a/web/src/plugins/vuetify.ts
+++ b/web/src/plugins/vuetify.ts
@@ -10,7 +10,7 @@ import "vuetify/styles";
// Composables
import { createVuetify } from "vuetify";
-import { VNumberInput } from "vuetify/labs/components";
+import { VNumberInput, VDateInput } from "vuetify/labs/components";
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
export default createVuetify({
@@ -31,5 +31,6 @@ export default createVuetify({
},
components: {
VNumberInput,
+ VDateInput,
},
});