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 2c1367a commit d6fdd75Copy full SHA for d6fdd75
src/gui/MultiChoiceSettingsModal.ts
@@ -43,10 +43,10 @@ export class MultiChoiceSettingsModal extends Modal {
43
new Setting(this.contentEl)
44
.setName("Placeholder")
45
.setDesc(
46
- "Shown in the choice picker search box when this multi choice opens.",
+ "Shown in the choice picker search box when this multi choice opens. Leave blank to use the multi name.",
47
)
48
.addText((text) => {
49
- text.setPlaceholder("Select an option...");
+ text.setPlaceholder("Defaults to the multi name");
50
text.setValue(this.placeholder).onChange((value) => {
51
this.placeholder = value;
52
});
0 commit comments