frontend/logs/components/logs_table.tsx
Function LogsTable
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const LogsTable = (props: LogsTableProps) => {
return <div className={"logs-table-wrapper"}>
<table className={LOG_TABLE_CLASS}>
<thead>
<tr>
Function LogsRow
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const LogsRow = (props: LogsRowProps) => {
const { tlog, timeSettings, dispatch, markdown } = props;
const { uuid } = tlog;
const { x, y, z, verbosity, type, created_at, message, id } = tlog.body;
const at = moment.unix(created_at || NaN);