Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyBonar committed Sep 24, 2024
1 parent 50a2e59 commit 5b480bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions webui/react/src/pages/FlatRuns/columns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ export const getColumnDefs = ({

experimentProgress: {
id: 'experimentProgress',
renderer: (record: FlatRun) => handleEmptyCell(record.experiment?.progress, (data) => ({
renderer: (record: FlatRun) =>
handleEmptyCell(record.experiment?.progress, (data) => ({
allowOverlay: false,
data: floatToPercent(data, 0),
displayData: floatToPercent(data, 0),
Expand All @@ -253,7 +254,7 @@ export const getColumnDefs = ({
columnWidths.experimentProgress ?? defaultColumnWidths.experimentProgress ?? MIN_COLUMN_WIDTH,
},
// TODO: should this change to search?
externalExperimentId: {
externalExperimentId: {
id: 'externalExperimentId',
renderer: (record: FlatRun) =>
handleEmptyCell(record.experiment?.externalExperimentId, (data) => ({
Expand Down

0 comments on commit 5b480bc

Please sign in to comment.