Fixed pagination. Added entity page channel tile expand.
This commit is contained in:
@@ -1,14 +1,27 @@
|
||||
<template>
|
||||
<div v-if="is404">
|
||||
<h1>404 Page Not Found</h1>
|
||||
<p>This page could not be found.</p>
|
||||
</div>
|
||||
<div v-else>
|
||||
<h1>500 Internal Error</h1>
|
||||
<p>Something went wrong.</p>
|
||||
</div>
|
||||
<div v-if="is404">
|
||||
<h1>404 Page Not Found</h1>
|
||||
|
||||
<p v-if="abortReason">{{ abortReason }}</p>
|
||||
<p v-else>This page could not be found.</p>
|
||||
</div>
|
||||
|
||||
<div v-else>
|
||||
<h1>500 Internal Error</h1>
|
||||
<p>Something went wrong.</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
defineProps(['is404'])
|
||||
import { inject } from 'vue';
|
||||
|
||||
defineProps({
|
||||
is404: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
});
|
||||
|
||||
const pageContext = inject('pageContext');
|
||||
const { abortReason } = pageContext;
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user