We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 34b9d73 + 6ceca7f commit 09b1dddCopy full SHA for 09b1ddd
1 file changed
app/frontend/src/components/designer/FormViewer.vue
@@ -136,7 +136,9 @@ const shouldDisableFileDownloads = computed(() => {
136
return false;
137
}
138
139
- return properties.readOnly && isFormPublic(form.value);
+ return (
140
+ properties.readOnly && isFormPublic(form.value) && !authenticated.value
141
+ );
142
});
143
144
const viewerOptions = computed(() => {
0 commit comments