Basic Task deletion
This commit is contained in:
@@ -122,7 +122,6 @@
|
||||
hint="Add a boat, if applicable"
|
||||
v-model="modifiedTask.boat"
|
||||
use-input
|
||||
emit-value
|
||||
input-debounce="250"
|
||||
:options="boatList"
|
||||
option-label="name"
|
||||
@@ -172,7 +171,6 @@ const defaultTask = <Task>{
|
||||
volunteers_required: 0,
|
||||
status: 'ready',
|
||||
depends_on: [],
|
||||
boat: '',
|
||||
};
|
||||
|
||||
const { taskId } = props;
|
||||
@@ -210,7 +208,7 @@ function filterTasks(val: string, update: (cb: () => void) => void): void {
|
||||
}
|
||||
|
||||
function filterTags(
|
||||
optionVar: Ref<SkillTag[] | TaskTag[] | undefined>,
|
||||
optionVar: Ref<(SkillTag | TaskTag)[] | undefined>,
|
||||
optionSrc: SkillTag[] | TaskTag[],
|
||||
val: string,
|
||||
update: (cb: () => void) => void
|
||||
|
||||
Reference in New Issue
Block a user