Skip to content

Commit f1e1986

Browse files
Fix pipelines flag default (#289)
It was not performing as expected, and instead was showing the pipelines dropdown at all times 😧
1 parent 5bfbd08 commit f1e1986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const flags = {
1919
},
2020
pipelines: {
2121
description: 'Select from multiple pipelines',
22-
default: typeof jest !== undefined,
22+
default: typeof jest !== 'undefined',
2323
icon: '🔀'
2424
}
2525
};

0 commit comments

Comments
 (0)