mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 13:15:24 +00:00
Merge branch 'improve-new-element-modal-loading-state' into 'develop'
Improve the 'new element' modal loading state. See merge request baserow/baserow!3260
This commit is contained in:
commit
45f5b00e7c
1 changed files with 3 additions and 3 deletions
|
@ -6,14 +6,14 @@
|
|||
:class="{ 'add-element-card--disabled': disabled }"
|
||||
v-on="$listeners"
|
||||
>
|
||||
<div v-if="loading" class="loading"></div>
|
||||
<div v-else class="add-element-card__element-type">
|
||||
<div class="add-element-card__element-type">
|
||||
<div
|
||||
class="add-element-card__element-type-icon"
|
||||
:class="`add-element-card__element-type-icon-${elementType.getType()}`"
|
||||
></div>
|
||||
</div>
|
||||
<span class="add-element-card__label">{{ elementType.name }}</span>
|
||||
<div v-if="loading" class="loading"></div>
|
||||
<span v-else class="add-element-card__label">{{ elementType.name }}</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue