diff --git a/frontend/css/global.scss b/frontend/css/global.scss index 4ed67c23c..04ecd0a8f 100644 --- a/frontend/css/global.scss +++ b/frontend/css/global.scss @@ -1058,6 +1058,9 @@ ul { .fa-ban { color: $medium_gray; } + .table-responsive{ + border: none; + } } .logs-settings-menu { diff --git a/frontend/logs/components/logs_table.tsx b/frontend/logs/components/logs_table.tsx index ded52d2a1..71f9076fe 100644 --- a/frontend/logs/components/logs_table.tsx +++ b/frontend/logs/components/logs_table.tsx @@ -69,26 +69,28 @@ const LOG_TABLE_CLASS = [ /** All log messages with select data in table form for display in the app. */ export const LogsTable = (props: LogsTableProps) => { - return - - - - - - - - - - {filterByVerbosity(getFilterLevel(props.state), props.logs) - .map((log: TaggedLog) => - )} - -
; + return
+ + + + + + + + + + + {filterByVerbosity(getFilterLevel(props.state), props.logs) + .map((log: TaggedLog) => + )} + +
+
; }; /** Get current verbosity filter level for a message type from LogsState. */ diff --git a/frontend/logs/index.tsx b/frontend/logs/index.tsx index ff2157571..cb7b8ffd2 100644 --- a/frontend/logs/index.tsx +++ b/frontend/logs/index.tsx @@ -37,7 +37,7 @@ export class RawLogs extends React.Component> { } else { return currentValue as number; } - } + }; state: LogsState = { autoscroll: false, @@ -61,7 +61,7 @@ export class RawLogs extends React.Component> { this.props.dispatch( setWebAppConfigValue(safeNumericSetting(name + "_log"), newSetting)); }; - } + }; /** Set log type filter level. i.e., level 2 shows verbosity 2 and lower.*/ setFilterLevel = (name: keyof Filters) => {