Merge pull request #23595 from overleaf/dk-can-review-order

Swap the order of "can view/can review" options

GitOrigin-RevId: d58a4633b02be1bcf28f7c483c046fa18a97adb6
This commit is contained in:
David
2025-02-13 12:41:13 +00:00
committed by Copybot
parent 4c60432229
commit 8e18162491

View File

@@ -173,10 +173,10 @@ export default function AddCollaborators({ readOnly }) {
<option disabled={readOnly} value="readAndWrite">
{t('can_edit')}
</option>
<option value="readOnly">{t('can_view')}</option>
{getMeta('ol-isReviewerRoleEnabled') && (
<option value="review">{t('can_review')}</option>
)}
<option value="readOnly">{t('can_view')}</option>
</OLFormSelect>
<span>&nbsp;&nbsp;</span>
<ClickableElementEnhancer