added and removed some todo-tags
This commit is contained in:
@@ -111,6 +111,9 @@ div.modal.fade(
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* TODO: #5 Make down, up work!
|
||||
*/
|
||||
function onDown() {
|
||||
if (selected.value < suggestions.value.length - 1) {
|
||||
selected.value++
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user