Add loading icon to group selector
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
@@ -21,9 +21,9 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<router-link class="board-list-row"
|
<router-link :id="`board-${board.id}`"
|
||||||
:id="`board-${board.id}`"
|
:title="board.title"
|
||||||
:title="board.title" :to="routeTo" tag="div">
|
:to="routeTo" class="board-list-row" tag="div">
|
||||||
<div class="board-list-bullet-cell">
|
<div class="board-list-bullet-cell">
|
||||||
<div :style="{ 'background-color': board.bullet }" class="board-list-bullet" />
|
<div :style="{ 'background-color': board.bullet }" class="board-list-bullet" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -49,7 +49,8 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="app-settings-content">
|
<div id="app-settings-content">
|
||||||
<Multiselect :options="groups" :multiple="true" v-model="groupLimit"
|
<Multiselect :class="{'icon-loading-small': groupLimitDisabled}" :options="groups" :multiple="true"
|
||||||
|
v-model="groupLimit"
|
||||||
:disabled="groupLimitDisabled" label="displayname" track-by="id"
|
:disabled="groupLimitDisabled" label="displayname" track-by="id"
|
||||||
@input="updateConfig" />
|
@input="updateConfig" />
|
||||||
<p>{{ t('deck', 'Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.') }}</p>
|
<p>{{ t('deck', 'Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.') }}</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user