We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010dfac commit 4d6a82aCopy full SHA for 4d6a82a
src/components/NewTodo.vue
@@ -102,7 +102,9 @@ export default defineComponent({
102
};
103
},
104
mounted() {
105
- const dueDateInput = document.getElementById("dueDate") as HTMLInputElement;
+ const dueDateInput = document.getElementById(
106
+ "due-date"
107
+ ) as HTMLInputElement;
108
dueDateInput.min = currentLocalDate.toISOString().split("T")[0]; //task minimum due date must be today
109
110
methods: {
0 commit comments