Fixes width of home collection list when only a few collections exists.

This commit is contained in:
Mateus Machado Luna 2018-11-26 14:53:26 -02:00
parent 201f8978fa
commit 6be31f3a78
4 changed files with 16 additions and 4 deletions

View File

@ -54,7 +54,7 @@
<masonry
:cols="{ default: 5, 1919: 4, 1407: 3, 1215: 2, 1023: 2, 767: 1 }"
:gutter="25"
style="width=100%;">
style="width:100%;">
<router-link
tag="a"
:to="$routerHelper.getNewCollectionPath()"

View File

@ -29,7 +29,11 @@
</div>
</div>
</template>
<template slot="empty">{{ $i18n.get('info_no_options_found' ) }}</template>
<template
v-if="!isLoadingOptions"
slot="empty">
{{ $i18n.get('info_no_options_found' ) }}
</template>
</b-autocomplete>
</div>
</template>

View File

@ -30,7 +30,11 @@
</div>
</div>
</template>
<template slot="empty">{{ $i18n.get('info_no_options_found' ) }}</template>
<template
v-if="!isLoadingOptions"
slot="empty">
{{ $i18n.get('info_no_options_found' ) }}
</template>
</b-taginput>
</div>
</template>

View File

@ -24,7 +24,11 @@
</div>
</div>
</template>
<template slot="empty">{{ $i18n.get('info_no_options_found' ) }}</template>
<template
v-if="!isLoading"
slot="empty">
{{ $i18n.get('info_no_options_found' ) }}
</template>
</b-taginput>
</div>
</template>