mirror of
https://github.com/JackyKLai/kunkun-ext-letterboxd.git
synced 2025-04-04 10:16:43 +00:00
Fix toast bug
This commit is contained in:
parent
3fdc014367
commit
3501790343
@ -59,7 +59,7 @@ class LetterboxdCmd extends TemplateUiCommand {
|
|||||||
async onFormSubmit(value: Record<string, any>): Promise<void> {
|
async onFormSubmit(value: Record<string, any>): Promise<void> {
|
||||||
await kv.set(USERNAME_KEY, value['clear-username'] ? '' : value.username)
|
await kv.set(USERNAME_KEY, value['clear-username'] ? '' : value.username)
|
||||||
this.currentLetterboxdUsername = value.username
|
this.currentLetterboxdUsername = value.username
|
||||||
toast.success("Letterboxd username " + value['clear-username'] ? 'removed.' : `set to: ${value.username}`)
|
toast.success(`Letterboxd username ${value['clear-username'] ? 'removed' : 'set to ' + value.username}.`)
|
||||||
this.load()
|
this.load()
|
||||||
}
|
}
|
||||||
async load() {
|
async load() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user