Skip to content

Commit 9cc519a

Browse files
lint
1 parent c67c893 commit 9cc519a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

webui/react/src/components/ColumnPickerMenu.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ const ColumnPickerTab: React.FC<ColumnTabProps> = ({
174174
({ index, style }: { index: number; style: React.CSSProperties }) => {
175175
const col = filteredColumns[index];
176176
const colType =
177-
(runColumns as readonly string[]).includes(col.column) && col.type === V1ColumnType.UNSPECIFIED
177+
(runColumns as readonly string[]).includes(col.column) &&
178+
col.type === V1ColumnType.UNSPECIFIED
178179
? 'BOOLEAN'
179180
: removeColumnTypePrefix(col.type);
180181
const getColDisplayName = (col: ProjectColumn) => {

0 commit comments

Comments
 (0)