зеркало из https://github.com/nextcloud/deck.git
fix: Proper slots for card selector dialog
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Родитель
e73eec8ba4
Коммит
a0bcbc5cc6
|
@ -13,16 +13,16 @@
|
|||
:disabled="loading"
|
||||
label="title"
|
||||
@option:selected="fetchCardsFromBoard">
|
||||
<template slot="singleLabel" slot-scope="props">
|
||||
<template #selected-option="props">
|
||||
<span>
|
||||
<span :style="{ 'backgroundColor': '#' + props.option.color }" class="board-bullet" />
|
||||
<span>{{ props.option.title }}</span>
|
||||
<span :style="{ 'backgroundColor': '#' + props.color }" class="board-bullet" />
|
||||
<span>{{ props.title }}</span>
|
||||
</span>
|
||||
</template>
|
||||
<template slot="option" slot-scope="props">
|
||||
<template #option="props">
|
||||
<span>
|
||||
<span :style="{ 'backgroundColor': '#' + props.option.color }" class="board-bullet" />
|
||||
<span>{{ props.option.title }}</span>
|
||||
<span :style="{ 'backgroundColor': '#' + props.color }" class="board-bullet" />
|
||||
<span>{{ props.title }}</span>
|
||||
</span>
|
||||
</template>
|
||||
</NcSelect>
|
||||
|
|
Загрузка…
Ссылка в новой задаче