diff options
author | Ollie Hsieh <renahlee@outlook.com> | 2023-04-27 07:51:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 09:51:47 -0500 |
commit | 7a2c21026db702d028c20796a8d0bccd68de5464 (patch) | |
tree | b0f200338e646c186fefb545b3638ef5146d0845 /src/state/models/ui/shell.ts | |
parent | c8e51a7d48587d977a7c005caeb9a1b215fa0ab5 (diff) | |
download | voidsky-7a2c21026db702d028c20796a8d0bccd68de5464.tar.zst |
Load previous state in alt text modal (#546)
Diffstat (limited to 'src/state/models/ui/shell.ts')
-rw-r--r-- | src/state/models/ui/shell.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/state/models/ui/shell.ts b/src/state/models/ui/shell.ts index a2891d9bb..797d53f81 100644 --- a/src/state/models/ui/shell.ts +++ b/src/state/models/ui/shell.ts @@ -43,6 +43,7 @@ export interface CropImageModal { export interface AltTextImageModal { name: 'alt-text-image' + prevAltText: string onAltTextSet: (altText?: string) => void } |