Add loading icon to group selector

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2019-04-25 21:51:39 +02:00
parent 47f9b6cfc3
commit 29c63288bf
2 changed files with 5 additions and 4 deletions

View File

@@ -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>

View File

@@ -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>