mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 17:25:35 +03:00
fix(deps): update typescript-projects (#16945)
* fix(deps): update typescript-projects * fix: very weird variables --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
This commit is contained in:
@@ -9,10 +9,11 @@
|
||||
|
||||
interface Props {
|
||||
data: PageData;
|
||||
isShowKeyboardShortcut?: boolean;
|
||||
}
|
||||
|
||||
let { data, isShowKeyboardShortcut = $bindable(false) }: Props = $props();
|
||||
let { data }: Props = $props();
|
||||
|
||||
let isShowKeyboardShortcut = $state(false);
|
||||
</script>
|
||||
|
||||
<UserPageLayout title={data.meta.title}>
|
||||
|
||||
@@ -23,15 +23,12 @@
|
||||
|
||||
interface Props {
|
||||
data: PageData;
|
||||
isShowKeyboardShortcut?: boolean;
|
||||
isShowDuplicateInfo?: boolean;
|
||||
}
|
||||
|
||||
let {
|
||||
data = $bindable(),
|
||||
isShowKeyboardShortcut = $bindable(false),
|
||||
isShowDuplicateInfo = $bindable(false),
|
||||
}: Props = $props();
|
||||
let { data = $bindable() }: Props = $props();
|
||||
|
||||
let isShowKeyboardShortcut = $state(false);
|
||||
let isShowDuplicateInfo = $state(false);
|
||||
|
||||
interface Shortcuts {
|
||||
general: ExplainedShortcut[];
|
||||
|
||||
Reference in New Issue
Block a user