Skip to content

Commit 78f47c5

Browse files
authored
Merge pull request #20886 from davelopez/improve_user_sharing_default
Set default option to make datasets accessible only to individual users when sharing histories with particular users
2 parents bfcc46a + 049e343 commit 78f47c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/Sharing/UserSharing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const cannotChangeDatasets = computed(() => {
139139
return isShareableHistoryWithStatus(props.item) ? props.item.extra.cannot_change : [];
140140
});
141141
142-
const selectedSharingOption = ref<ShareOption>("make_public");
142+
const selectedSharingOption = ref<ShareOption>("make_accessible_to_shared");
143143
144144
function onUpdatePermissions() {
145145
emit("share", sharingCandidatesAsEmails.value, selectedSharingOption.value);

0 commit comments

Comments
 (0)