diff --git a/client/src/components/Logs/Logs.css b/client/src/components/Logs/Logs.css index abdf9611..0a5939c1 100644 --- a/client/src/components/Logs/Logs.css +++ b/client/src/components/Logs/Logs.css @@ -12,6 +12,10 @@ text-overflow: ellipsis; } +.card-table .logs__row { + overflow: visible; +} + .logs__row--center { justify-content: center; } diff --git a/client/src/components/ui/Popover.js b/client/src/components/ui/Popover.js index bc58ac17..7ab6b5ac 100644 --- a/client/src/components/ui/Popover.js +++ b/client/src/components/ui/Popover.js @@ -14,13 +14,21 @@ class Popover extends Component { const source = (
- source_label: {sourceData.name} + source_label: + {sourceData.name} +
); const tracker = (
- name_table_header: {data.name} + name_table_header: + {data.name} +
); @@ -29,7 +37,12 @@ class Popover extends Component { return (
- + + + +
diff --git a/client/src/components/ui/ReactTable.css b/client/src/components/ui/ReactTable.css index 42da9557..4595212d 100644 --- a/client/src/components/ui/ReactTable.css +++ b/client/src/components/ui/ReactTable.css @@ -5,6 +5,10 @@ text-overflow: ellipsis; } +.card-table .ReactTable .rt-td { + overflow: visible; +} + .ReactTable .rt-tbody { overflow: visible; }