diff --git a/changelog.md b/changelog.md index 693b7483f6..91ce560ee2 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,7 @@ Platform: - Fix first filter disappear - Adjust label editors design +- Fix skills/labels selection and show real usage counter ## 0.6.22 diff --git a/plugins/recruit-resources/src/components/EditApplication.svelte b/plugins/recruit-resources/src/components/EditApplication.svelte index 8bfacd1e30..8223e59873 100644 --- a/plugins/recruit-resources/src/components/EditApplication.svelte +++ b/plugins/recruit-resources/src/components/EditApplication.svelte @@ -46,7 +46,7 @@ const dispatch = createEventDispatcher() onMount(() => { - dispatch('open', { ignoreKeys: ['comments', 'number'] }) + dispatch('open', { ignoreKeys: ['comments', 'number'], allowedCollections: ['labels'] }) }) diff --git a/plugins/tags-resources/src/components/TagsAttributeEditor.svelte b/plugins/tags-resources/src/components/TagsAttributeEditor.svelte index d7c1a05ed3..7b84049857 100644 --- a/plugins/tags-resources/src/components/TagsAttributeEditor.svelte +++ b/plugins/tags-resources/src/components/TagsAttributeEditor.svelte @@ -28,6 +28,9 @@ {#each items as value} {/each} + {:else if isEditable} {/each} diff --git a/plugins/task-resources/src/components/TaskHeader.svelte b/plugins/task-resources/src/components/TaskHeader.svelte index 4ea6b1daa6..7f8e881a97 100644 --- a/plugins/task-resources/src/components/TaskHeader.svelte +++ b/plugins/task-resources/src/components/TaskHeader.svelte @@ -26,6 +26,7 @@ export let mixins: Mixin[] export let ignoreKeys: string[] export let vertical: boolean = false + export let allowedCollections: string[] = [] const client = getClient() const hierarchy = client.getHierarchy() @@ -77,7 +78,7 @@ {:else} - + {/if}