We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c67c893 commit 9cc519aCopy full SHA for 9cc519a
webui/react/src/components/ColumnPickerMenu.tsx
@@ -174,7 +174,8 @@ const ColumnPickerTab: React.FC<ColumnTabProps> = ({
174
({ index, style }: { index: number; style: React.CSSProperties }) => {
175
const col = filteredColumns[index];
176
const colType =
177
- (runColumns as readonly string[]).includes(col.column) && col.type === V1ColumnType.UNSPECIFIED
+ (runColumns as readonly string[]).includes(col.column) &&
178
+ col.type === V1ColumnType.UNSPECIFIED
179
? 'BOOLEAN'
180
: removeColumnTypePrefix(col.type);
181
const getColDisplayName = (col: ProjectColumn) => {
0 commit comments