Skip to content

Commit 09b1ddd

Browse files
Merge branch 'main' into FORMS-2510-Admin-Table-Fix
2 parents 34b9d73 + 6ceca7f commit 09b1ddd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

app/frontend/src/components/designer/FormViewer.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,9 @@ const shouldDisableFileDownloads = computed(() => {
136136
return false;
137137
}
138138
139-
return properties.readOnly && isFormPublic(form.value);
139+
return (
140+
properties.readOnly && isFormPublic(form.value) && !authenticated.value
141+
);
140142
});
141143
142144
const viewerOptions = computed(() => {

0 commit comments

Comments
 (0)