Skip to content

Commit a477063

Browse files
authored
[6.x] Correct Grid fieldtype deleting row condition (#12488)
Correct Grid deleting row condition
1 parent 2476ef8 commit a477063

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • resources/js/components/fieldtypes/grid

resources/js/components/fieldtypes/grid/Grid.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</element-container>
4242

4343
<confirmation-modal
44-
v-if="deletingRow"
44+
v-if="deletingRow !== null"
4545
:title="__('Delete Row')"
4646
:body-text="__('Are you sure?')"
4747
:button-text="__('Delete')"

0 commit comments

Comments
 (0)