2
0
mirror of https://github.com/frappe/books.git synced 2024-11-12 16:36:27 +00:00

fix(ui): table overflowing

This commit is contained in:
akshayitzme 2023-08-25 17:35:48 +05:30 committed by akshayitzme
parent 3bbf5294c9
commit 65c472500b
2 changed files with 52 additions and 48 deletions

View File

@ -18,6 +18,7 @@
</div>
</Row>
<div class="overflow-y-auto" style="height: 72.5vh">
<Row
v-if="items"
v-for="row in items"
@ -46,6 +47,7 @@
:readOnly="true"
/>
</Row>
</div>
</template>
<script lang="ts">

View File

@ -19,6 +19,7 @@
</div>
</Row>
<div class="overflow-y-auto" style="height: 50vh">
<Row
v-for="row in sinvDoc.items"
:ratio="ratio"
@ -39,6 +40,7 @@
@removeItem="removeItem"
/>
</Row>
</div>
</template>
<script lang="ts">
import Row from '../Row.vue';