Fixed Scroll in EntityShowSub.vue

This commit is contained in:
2025-11-09 17:57:58 +01:00
parent f3892861b1
commit 4cfa4dbffd

View File

@@ -110,12 +110,15 @@ setup()
</template> </template>
</Toolbar> </Toolbar>
<EntityTable <div class="scroll" style="height: 70vh">
:type="type" <EntityTable
:columns="columns" :type="type"
:rows="props.item[type]" :columns="columns"
style :rows="props.item[type]"
/> style
/>
</div>
</UCard> </UCard>
</template> </template>