Added Mobile Rendering to EntityShow
This commit is contained in:
@@ -11,6 +11,10 @@ const props = defineProps({
|
||||
topLevelType: {
|
||||
type: String,
|
||||
required: true
|
||||
},
|
||||
platform: {
|
||||
type: String,
|
||||
required: true
|
||||
}
|
||||
})
|
||||
|
||||
@@ -21,13 +25,14 @@ const dataType = dataStore.dataTypes[props.topLevelType]
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<UCard class="mt-5 scroll" style="height: 80vh">
|
||||
<UCard class="mt-5 scroll" :style="props.platform !== 'mobile' ? 'height: 80vh' : ''">
|
||||
<HistoryDisplay
|
||||
:type="props.topLevelType.substring(0,props.topLevelType.length-1)"
|
||||
v-if="props.item.id"
|
||||
:element-id="props.item.id"
|
||||
render-headline
|
||||
/>
|
||||
<!--TODO Workaround für die Höhe finden? Evt unterseite oder Modal oder ganz nach unten -->
|
||||
</UCard>
|
||||
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user