mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat(web): previous button for on-boarding steps (#6178)
* feat: previous on the onboarding * fix: storage full screen * feat: transition * use svelte files for svg * fix: use icon component * fix: additional check * styling' --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
parent
8c784defa0
commit
2cc5149d0b
7 changed files with 71 additions and 38 deletions
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
const dispatch = createEventDispatcher<{
|
||||
done: void;
|
||||
previous: void;
|
||||
}>();
|
||||
|
||||
let configs: SystemConfigDto | null = null;
|
||||
|
|
@ -32,6 +33,7 @@
|
|||
disabled={$featureFlags.configFile}
|
||||
storageConfig={configs.storageTemplate}
|
||||
on:save={() => dispatch('done')}
|
||||
on:previous={() => dispatch('previous')}
|
||||
/>
|
||||
{/if}
|
||||
</OnboardingCard>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue