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
|
<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()"
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue