Skip to content

Commit

Permalink
apply review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kelanik8 committed Oct 6, 2023
1 parent 3f9f748 commit 4f6e15c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions client/web/compose/src/components/Public/Record/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
:record-i-d="recordID"
:values="values"
:ref-record="refRecord"
:edit="modalInEditModal"
:edit="edit"
show-record-modal
@handle-record-redirect="loadRecord"
/>
Expand Down Expand Up @@ -74,7 +74,7 @@ export default {
page: undefined,
values: undefined,
refRecord: undefined,
modalInEditModal: false,
edit: false,
}
},
Expand Down Expand Up @@ -132,7 +132,7 @@ export default {
this.recordID = recordID
this.values = values
this.refRecord = refRecord
this.modalInEditModal = edit
this.edit = edit
this.loadModal({ recordID, recordPageID })
Expand Down
2 changes: 1 addition & 1 deletion client/web/compose/src/views/Public/Pages/Records/View.vue
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export default {
edit: {
type: Boolean,
required: false,
default: false,
},
},
Expand Down

0 comments on commit 4f6e15c

Please sign in to comment.