Skip to content

Commit

Permalink
fix: fix strategy form not hidding on picker open (#861)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Oct 10, 2024
1 parent 8061e17 commit bb3dc10
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions apps/ui/src/components/Modal/EditStrategy.vue
Original file line number Diff line number Diff line change
Expand Up @@ -141,15 +141,16 @@ watchEffect(() => {
</div>
</template>
</template>
<div v-if="isDefinitionLoading" class="p-4 flex">
<UiLoading class="m-auto" />
</div>
<PickerContact
v-if="showPicker"
v-else-if="showPicker"
:loading="false"
:search-value="searchValue"
@pick="handlePickerSelect"
/>
<div v-if="isDefinitionLoading" class="p-4 flex">
<UiLoading class="m-auto" />
</div>

<div v-else class="s-box p-4">
<UiMessage
v-if="formErrors[CUSTOM_ERROR_SYMBOL]"
Expand Down

0 comments on commit bb3dc10

Please sign in to comment.