Skip to content

fix invitation UI issues #588

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2025
Merged
Changes from all commits
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
5 changes: 3 additions & 2 deletions public/globals.js
Original file line number Diff line number Diff line change
@@ -147,7 +147,7 @@ window.pkp = {
'acceptInvitation.cancelInvite.title': 'Cancel Role Invitation Process?',
'acceptInvitation.modal.button': 'View All Submissions',
'acceptInvitation.modal.message':
'Congratulations on your new role in OJS! You might now have access to new options. If you need assistance navigating the system, please click on the \u201cHelp\u201d buttons throughout the interface for guidance',
'Congratulations on your new role in OJS! You might now have access to new options. If you need any assistance in understanding the system, please click on the “Help” button throughout the system for guidance.',
'acceptInvitation.modal.title': "You've been assigned a new role in OJS",
'acceptInvitation.passwordField.description':
'It should be at least 6 characters long and could be a combination of uppercase letters, lowercase letters, numbers and symbols',
@@ -162,6 +162,7 @@ window.pkp = {
'acceptInvitation.usernameField.description':
'It could be a combination of uppercase letters, lowercase letters or numbers',
'acceptInvitation.verifyOrcid': 'Verify ORCID iD',
'acceptInvitation.privacyConsent':'Privacy Consent',
'admin.jobs.failed.action.redispatch': 'Try Again',
'admin.jobs.failed.action.redispatch.all': 'Requeue All Failed Jobs',
'admin.jobs.list.actions': 'Actions',
@@ -905,7 +906,7 @@ window.pkp = {
'userInvitation.edit.title': 'Edit Invitation',
'userInvitation.modal.button': 'View All Users',
'userInvitation.modal.message':
"{$email} has been invited to new role in OJS. You can be updated about the user's decision on the User & Role page, your OJS notification and/or your email.",
"{$email} has been invited to new role in OJS. You can be updated about the user's decision on the Users & Roles page, your OJS notifications and/or your email.",
'userInvitation.modal.title': 'Invitation Sent',
'userInvitation.roleTable.endDate': 'End Date',
'userInvitation.roleTable.journalMasthead': 'Journal Masthead',
2 changes: 1 addition & 1 deletion src/managers/UserAccessManager/UserAccessManager.vue
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<PkpTable class="mt-2">
<template #label>
<h3 class="text-3xl-bold">
{{ t('grid.user.currentUsers') }}({{
{{ t('grid.user.currentUsers') }} ({{
store.userAccessPagination.itemCount
}})
</h3>
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
<PkpTable>
<template #label>
<h3 class="text-3xl-bold">
{{ t('invitation.header') }}({{
{{ t('invitation.header') }} ({{
store.invitationsPagination.itemCount
}})
</h3>
Original file line number Diff line number Diff line change
@@ -36,6 +36,8 @@

<div class="flex">
<FieldOptions
:label="t('acceptInvitation.privacyConsent')"
:is-required="true"
component="field-options"
:value="fields.privacyStatement"
name="privacyStatement"