Skip to content

Commit

Permalink
fix: use v-show for profile tab to retain dirty flags
Browse files Browse the repository at this point in the history
More general solution is needed: #573
  • Loading branch information
Sekhmet committed Aug 27, 2024
1 parent 712ff6d commit 914f174
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ui/src/views/Space/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ watchEffect(() => setTitle(`Edit settings - ${props.space.name}`));
>
<UiLoading v-if="loading" />
<template v-else>
<div v-if="activeTab === 'profile'">
<div v-show="activeTab === 'profile'">
<FormSpaceProfile
:id="space.id"
:space="space"
Expand Down

0 comments on commit 914f174

Please sign in to comment.