Skip to content
Snippets Groups Projects
Unverified Commit c7c5b356 authored by Anton Kulyk's avatar Anton Kulyk Committed by GitHub
Browse files

Fix long field names handling for series names and in the model editor (#43394)

* Fix long names in model editor

* Fix long names in series name input
parent 13aae663
No related branches found
No related tags found
No related merge requests found
......@@ -151,4 +151,9 @@ export const InputSubtitle = styled.div`
left: 1.25em;
font-family: ${monospaceFontFamily};
font-size: 0.75em;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
max-width: 90%;
`;
......@@ -251,6 +251,10 @@ function DatasetFieldMetadataSidebar({
top: "0.5rem",
fontSize: "0.625rem",
color: color("text-light"),
whiteSpace: "nowrap",
overflow: "hidden",
textOverflow: "ellipsis",
maxWidth: "90%",
},
},
input: {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment