refactor(front): consistent layouts on explore

This commit is contained in:
ArneBo 2025-01-29 18:21:38 +01:00
parent 17415093f1
commit 8b35d5934a
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ fetchData()
<template> <template>
<div> <div>
<slot /> <slot />
<Layout grid> <Layout flex>
<Loader v-if="isLoading" /> <Loader v-if="isLoading" />
<channel-card <channel-card
v-for="object in channels" v-for="object in channels"

View File

@ -81,7 +81,7 @@ fetchData()
<channels-widget <channels-widget
:show-modification-date="true" :show-modification-date="true"
:limit="12" :limit="12"
:filters="{ordering: '-creation_date', external: 'false'}" :filters="{ordering: '-creation_date', external: 'true'}"
/> />
</template> </template>