fix(webui): Overflow of "Used" section in Attribute Inspect

feat/selector-improvements
Tomáš Mládek 2023-11-13 19:49:58 +01:00
parent 12cd5b61e1
commit 044e19e9a7
2 changed files with 2 additions and 2 deletions

View File

@ -514,7 +514,6 @@
>
<EntryList
columns="entity,value"
columnWidths={["auto", "33%"]}
entries={attributesUsed}
orderByValue
/>

View File

@ -49,7 +49,7 @@
case ATTR_COL:
return "minmax(1em, 1fr)";
default:
return "minmax(1em, 2fr)";
return "auto";
}
}) as string[]
)
@ -442,6 +442,7 @@
.cell {
font-family: var(--monospace-font);
line-break: anywhere;
min-width: 0;
border-radius: 4px;
padding: 2px;