added and removed some todo-tags

This commit is contained in:
Sockenklaus
2021-10-08 22:16:29 +02:00
parent 24d62f6d02
commit 5c12b5cb0e
2 changed files with 3 additions and 5 deletions

View File

@@ -111,6 +111,9 @@ div.modal.fade(
}
}
/**
* TODO: #5 Make down, up work!
*/
function onDown() {
if (selected.value < suggestions.value.length - 1) {
selected.value++

View File

@@ -8,7 +8,6 @@ AddEmployeeModal(
@emitResult="addEmployee($event)"
)
//- TODO: #2 Can't highlight list-group-item when hovering
//- TODO: #3 Close Modal after successful input
<!-- Schedule Table -->
table(class='table table-bordered table-sm' v-for="(row, rIndex) in scheduleData" :key="rIndex")
@@ -117,10 +116,6 @@ table(class='table table-bordered table-sm' v-for="(row, rIndex) in scheduleData
}
}
/**
* TODO: #1 Can't focus the autocomplete input
*/
function addEmployee(param : Employee){
if (addEmployeeRow.value !== undefined && param !== null) {
scheduleData.value[addEmployeeRow.value].employees.push(param)