diff --git a/CHANGELOG.md b/CHANGELOG.md index 29f923e353..53342b9840 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.12.1 + +- Break long metric names into multiple lines in Run Page (roubkar) + ## 3.12.0 Jul 22, 2022 ### Enhancements: diff --git a/aim/web/ui/src/components/CustomTable/Table.scss b/aim/web/ui/src/components/CustomTable/Table.scss index ac6e74ad4b..4d13494cf7 100644 --- a/aim/web/ui/src/components/CustomTable/Table.scss +++ b/aim/web/ui/src/components/CustomTable/Table.scss @@ -109,7 +109,9 @@ $border-radius: 0.2rem; .Table__pane--selection { left: 0; - box-shadow: 1px 0 3px 0 $cuddle; + &.withShadow { + box-shadow: 1px 0 3px 0 $cuddle; + } } .Table__pane--right { diff --git a/aim/web/ui/src/components/CustomTable/Table.tsx b/aim/web/ui/src/components/CustomTable/Table.tsx index 68ff353952..d126b453b6 100644 --- a/aim/web/ui/src/components/CustomTable/Table.tsx +++ b/aim/web/ui/src/components/CustomTable/Table.tsx @@ -317,7 +317,7 @@ function Table(props) {