fix(assignees): use correct amount of spacing in assignee selection
This commit is contained in:
parent
28e83325d7
commit
9d39ccf15c
@ -1,5 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<Multiselect
|
<Multiselect
|
||||||
|
class="edit-assignees"
|
||||||
|
:class="{'has-assignees': assignees.length > 0}"
|
||||||
:loading="projectUserService.loading"
|
:loading="projectUserService.loading"
|
||||||
:placeholder="$t('task.assignee.placeholder')"
|
:placeholder="$t('task.assignee.placeholder')"
|
||||||
:multiple="true"
|
:multiple="true"
|
||||||
@ -115,3 +117,9 @@ async function findUser(query: string) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.edit-assignees.has-assignees.multiselect .input {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user