mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-27 20:14:57 +02:00
HR: Fixes to Vacancy/Application creation (#1753)
This commit is contained in:
@@ -24,6 +24,7 @@
|
||||
|
||||
export let folders: Ref<KanbanTemplateSpace>[]
|
||||
export let template: Ref<KanbanTemplate> | undefined = undefined
|
||||
export let focusIndex = -1
|
||||
|
||||
let templates: KanbanTemplate[] = []
|
||||
const templatesQ = createQuery()
|
||||
@@ -47,4 +48,10 @@
|
||||
}
|
||||
</script>
|
||||
|
||||
<DropdownLabels {items} icon={task.icon.ManageStatuses} bind:selected={selectedItem} label={plugin.string.States} />
|
||||
<DropdownLabels
|
||||
{focusIndex}
|
||||
{items}
|
||||
icon={task.icon.ManageStatuses}
|
||||
bind:selected={selectedItem}
|
||||
label={plugin.string.States}
|
||||
/>
|
||||
|
||||
@@ -52,7 +52,6 @@
|
||||
label={plugin.string.TodoCreate}
|
||||
okAction={createTodo}
|
||||
canSave={name?.length > 0}
|
||||
bind:space={_space}
|
||||
on:close={() => {
|
||||
dispatch('close')
|
||||
}}
|
||||
|
||||
@@ -66,7 +66,6 @@
|
||||
label={plugin.string.TodoEdit}
|
||||
okAction={editTodo}
|
||||
canSave={name.length > 0}
|
||||
space={item.space}
|
||||
on:close={() => {
|
||||
dispatch('close')
|
||||
}}
|
||||
|
||||
Reference in New Issue
Block a user