mirror of
https://github.com/immich-app/immich.git
synced 2025-05-31 04:05:39 -04:00
chore: migrate previously missed file to Svelte 5 (#17074)
This commit is contained in:
parent
c14668bdd4
commit
91065db3ff
@ -8,9 +8,13 @@
|
|||||||
import { t } from 'svelte-i18n';
|
import { t } from 'svelte-i18n';
|
||||||
import { dialogController } from '$lib/components/shared-components/dialog/dialog';
|
import { dialogController } from '$lib/components/shared-components/dialog/dialog';
|
||||||
|
|
||||||
export let stack: StackResponseDto;
|
interface Props {
|
||||||
export let asset: AssetResponseDto;
|
stack: StackResponseDto;
|
||||||
export let onAction: OnAction;
|
asset: AssetResponseDto;
|
||||||
|
onAction: OnAction;
|
||||||
|
}
|
||||||
|
|
||||||
|
let { stack, asset, onAction }: Props = $props();
|
||||||
|
|
||||||
const handleKeepThisDeleteOthers = async () => {
|
const handleKeepThisDeleteOthers = async () => {
|
||||||
const isConfirmed = await dialogController.show({
|
const isConfirmed = await dialogController.show({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user