fix item-dropdown interface text overflowing (#19406)

* fix item-dropdown interface text overflowing

* Add changeset

---------

Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch>
This commit is contained in:
Nitwel
2023-08-11 15:22:57 +02:00
committed by GitHub
parent 68ca1d309e
commit fb8bdb96e9
2 changed files with 8 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
---
"@directus/app": patch
---
Fixed text overflow in collection item interface

View File

@@ -140,6 +140,9 @@ function onSelection(selectedIds: (number | string)[] | null) {
<style lang="scss" scoped>
.preview {
display: block;
flex-grow: 1;
height: calc(100% - 16px);
overflow: hidden;
}
</style>