Skip to content

Commit 7f6ea1b

Browse files
feat(ui): Add list tools to space missions
1 parent 6b8aad7 commit 7f6ea1b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/userscript/source/ui/MissionSettingsUi.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ export class MissionSettingsUi extends SettingsPanel<MissionSettings> {
2626
}
2727
// Ensure buttons are added into UI with their labels alphabetized.
2828
items.sort((a, b) => a.label.localeCompare(b.label));
29-
const itemsList = new SettingsList(this._host, {
30-
hasDisableAll: false,
31-
hasEnableAll: false,
32-
});
29+
const itemsList = new SettingsList(this._host);
3330
items.forEach(button => itemsList.addChild(button.button));
3431
this.addChild(itemsList);
3532

0 commit comments

Comments
 (0)