fix long url field value scroll view

This commit is contained in:
Gani Georgiev
2026-06-20 12:34:25 +03:00
parent 8d30cb57e2
commit be6671b2eb
11 changed files with 20 additions and 12 deletions
+3
View File
@@ -190,6 +190,9 @@ table {
&.col-field-type-select {
min-width: 180px;
}
&.col-field-type-url {
max-width: 300px;
}
&.col-field-type-email {
min-width: 120px;
white-space: nowrap;
+1 -1
View File
@@ -15,7 +15,7 @@ export function view(props) {
return t.a({
href: () => value,
className: "txt txt-ellipsis",
className: () => `txt ${props.short ? "txt-ellipsis" : ""}`,
rel: "noopener noreferrer",
target: "_blank",
textContent: app.utils.truncate(value),