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

View File

@ -29,7 +29,11 @@
</div> </div>
</div> </div>
</template> </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> </b-autocomplete>
</div> </div>
</template> </template>

View File

@ -30,7 +30,11 @@
</div> </div>
</div> </div>
</template> </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> </b-taginput>
</div> </div>
</template> </template>

View File

@ -24,7 +24,11 @@
</div> </div>
</div> </div>
</template> </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> </b-taginput>
</div> </div>
</template> </template>