Skip to content

Commit d6fdd75

Browse files
committed
docs: clarify multi placeholder fallback in modal
1 parent 2c1367a commit d6fdd75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gui/MultiChoiceSettingsModal.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ export class MultiChoiceSettingsModal extends Modal {
4343
new Setting(this.contentEl)
4444
.setName("Placeholder")
4545
.setDesc(
46-
"Shown in the choice picker search box when this multi choice opens.",
46+
"Shown in the choice picker search box when this multi choice opens. Leave blank to use the multi name.",
4747
)
4848
.addText((text) => {
49-
text.setPlaceholder("Select an option...");
49+
text.setPlaceholder("Defaults to the multi name");
5050
text.setValue(this.placeholder).onChange((value) => {
5151
this.placeholder = value;
5252
});

0 commit comments

Comments
 (0)