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 6b8aad7 commit 7f6ea1bCopy full SHA for 7f6ea1b
packages/userscript/source/ui/MissionSettingsUi.ts
@@ -26,10 +26,7 @@ export class MissionSettingsUi extends SettingsPanel<MissionSettings> {
26
}
27
// Ensure buttons are added into UI with their labels alphabetized.
28
items.sort((a, b) => a.label.localeCompare(b.label));
29
- const itemsList = new SettingsList(this._host, {
30
- hasDisableAll: false,
31
- hasEnableAll: false,
32
- });
+ const itemsList = new SettingsList(this._host);
33
items.forEach(button => itemsList.addChild(button.button));
34
this.addChild(itemsList);
35
0 commit comments