Implemented:

- Add new features for setting Self-hosted LiveSync up more easier.
This commit is contained in:
vorotamoroz
2022-09-27 17:58:13 +09:00
parent 728edac283
commit 4b32365694
3 changed files with 130 additions and 49 deletions

View File

@@ -98,7 +98,7 @@ export class PopoverSelectString extends FuzzySuggestModal<string> {
constructor(app: App, note: string, placeholder: string | null, getItemsFun: () => string[], callback: (e: string) => void) {
super(app);
this.app = app;
this.setPlaceholder(placeholder ?? "y/n) " + note);
this.setPlaceholder((placeholder ?? "y/n) ") + note);
if (getItemsFun) this.getItemsFun = getItemsFun;
this.callback = callback;
}