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 e04d6e8 commit a856b76Copy full SHA for a856b76
frontend/src/ts/commandline/commandline.ts
@@ -116,7 +116,10 @@ export function show(
116
const overrideStringOrGroup =
117
settings?.subgroupOverride ?? subgroupSignal ?? null;
118
119
- if (overrideStringOrGroup !== undefined) {
+ if (
120
+ overrideStringOrGroup !== undefined &&
121
+ overrideStringOrGroup !== null
122
+ ) {
123
if (typeof overrideStringOrGroup === "string") {
124
const exists = CommandlineLists.doesListExist(overrideStringOrGroup);
125
if (exists) {
0 commit comments