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 <EntryList
columns="entity,value" columns="entity,value"
columnWidths={["auto", "33%"]}
entries={attributesUsed} entries={attributesUsed}
orderByValue orderByValue
/> />

View File

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