Skip to content

Commit

Permalink
fix(*): fix missing ()
Browse files Browse the repository at this point in the history
  • Loading branch information
mptap committed Jan 16, 2024
1 parent 31b2598 commit a26a892
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:edit-id="gatewayServiceId"
:error-message="form.errorMessage"
:fetch-url="fetchUrl"
:form-fields="getProcessedPayload"
:form-fields="getProcessedPayload()"
:is-readonly="form.isReadonly"
@cancel="handleClickCancel"
@fetch:error="(err: any) => $emit('error', err)"
Expand Down Expand Up @@ -776,7 +776,7 @@ const saveFormData = async (): Promise<AxiosResponse | undefined> => {
try {
form.isReadonly = true
const payload = getProcessedPayload
const payload = getProcessedPayload()
let response: AxiosResponse | undefined
Expand Down

0 comments on commit a26a892

Please sign in to comment.