0
0
Fork 0

Fix button label

This commit is contained in:
Sanjar Afaq 2024-07-12 21:16:26 +05:30 committed by GitHub
parent 34bdf0b4bf
commit c3a6827ed7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ export class VisibilityToggleSetting {
public static create(plugin: FileHider, container: HTMLElement) { public static create(plugin: FileHider, container: HTMLElement) {
return new Setting(container) return new Setting(container)
.setName(`Hidden File Visibility`) .setName(`Hidden File Visibility`)
.setDesc(`Toggle whether or not files and folders that are told to be hidden will be hidden or not.`) .setDesc(`Let chosen files and folders be visible.`)
.addToggle(toggle => { .addToggle(toggle => {
toggle toggle
.setValue(!plugin.settings.hidden) .setValue(!plugin.settings.hidden)
@ -15,4 +15,4 @@ export class VisibilityToggleSetting {
}); });
}); });
}; };
}; };