Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/server/plugins/engine/pageControllers/PageController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@
}

get feedbackLink() {
return `/form/feedback?formId=${this.model.formId}`
return this.def.options?.disableUserFeedback

Check failure on line 122 in src/server/plugins/engine/pageControllers/PageController.ts

View workflow job for this annotation

GitHub Actions / Build (Node 23)

Property 'disableUserFeedback' does not exist on type 'FormOptions'.

Check failure on line 122 in src/server/plugins/engine/pageControllers/PageController.ts

View workflow job for this annotation

GitHub Actions / Build (Node 24)

Property 'disableUserFeedback' does not exist on type 'FormOptions'.

Check failure on line 122 in src/server/plugins/engine/pageControllers/PageController.ts

View workflow job for this annotation

GitHub Actions / Build (Node 22)

Property 'disableUserFeedback' does not exist on type 'FormOptions'.
? undefined
: `/form/feedback?formId=${this.model.formId}`
}

get phaseTag() {
Expand Down
Loading