Fixes width of home collection list when only a few collections exists.
This commit is contained in:
parent
201f8978fa
commit
6be31f3a78
|
@ -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()"
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue