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() {
|
function onDown() {
|
||||||
if (selected.value < suggestions.value.length - 1) {
|
if (selected.value < suggestions.value.length - 1) {
|
||||||
selected.value++
|
selected.value++
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ AddEmployeeModal(
|
|||||||
@emitResult="addEmployee($event)"
|
@emitResult="addEmployee($event)"
|
||||||
)
|
)
|
||||||
|
|
||||||
//- TODO: #2 Can't highlight list-group-item when hovering
|
|
||||||
//- TODO: #3 Close Modal after successful input
|
//- TODO: #3 Close Modal after successful input
|
||||||
<!-- Schedule Table -->
|
<!-- Schedule Table -->
|
||||||
table(class='table table-bordered table-sm' v-for="(row, rIndex) in scheduleData" :key="rIndex")
|
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){
|
function addEmployee(param : Employee){
|
||||||
if (addEmployeeRow.value !== undefined && param !== null) {
|
if (addEmployeeRow.value !== undefined && param !== null) {
|
||||||
scheduleData.value[addEmployeeRow.value].employees.push(param)
|
scheduleData.value[addEmployeeRow.value].employees.push(param)
|
||||||
|
|||||||
Reference in New Issue
Block a user