Skip to content

Commit

Permalink
fix: don't flash manual save buttons on c-admin-editor while loading
Browse files Browse the repository at this point in the history
  • Loading branch information
ascott18 committed Jan 7, 2025
1 parent 07abd6a commit e09ba1d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

<v-spacer></v-spacer>
<v-btn
v-if="!model.$isAutoSaveEnabled"
v-if="!model.$isAutoSaveEnabled && showContent"
@click="model.$bulkSave()"
title="Save"
:color="isBulkSaveDirty ? 'success' : undefined"
Expand Down Expand Up @@ -175,7 +175,7 @@
</c-loader-status>
</v-card-text>

<v-card-actions v-if="canEdit">
<v-card-actions v-if="canEdit && showContent">
<v-spacer></v-spacer>
<v-btn
v-if="!model.$isAutoSaveEnabled"
Expand Down

0 comments on commit e09ba1d

Please sign in to comment.