mirror of
https://github.com/immich-app/immich.git
synced 2026-03-07 18:47:31 +03:00
chore(web): migration svelte 5 syntax (#13883)
This commit is contained in:
@@ -1,6 +1,10 @@
|
||||
<script lang="ts">
|
||||
export let title: string | null = null;
|
||||
export let height: string | null = null;
|
||||
interface Props {
|
||||
title?: string | null;
|
||||
height?: string | null;
|
||||
}
|
||||
|
||||
let { title = null, height = null }: Props = $props();
|
||||
</script>
|
||||
|
||||
<div class="overflow-clip" style={`height: ${height}`}>
|
||||
|
||||
Reference in New Issue
Block a user