diff --git a/services/web/app/src/Features/TokenAccess/TokenAccessController.mjs b/services/web/app/src/Features/TokenAccess/TokenAccessController.mjs index 94cf48894a..2add411d43 100644 --- a/services/web/app/src/Features/TokenAccess/TokenAccessController.mjs +++ b/services/web/app/src/Features/TokenAccess/TokenAccessController.mjs @@ -502,6 +502,7 @@ async function sharingUpdatesConsent(req, res, next) { page: req.path, name: 'link-sharing-collaborator', }) + await SplitTestHandler.promises.getAssignment(req, res, 'bs5-misc-pages-core') res.render('project/token/sharing-updates', { projectId, }) diff --git a/services/web/app/views/project/token/sharing-updates.pug b/services/web/app/views/project/token/sharing-updates.pug index a0afb0c621..d4fdb59123 100644 --- a/services/web/app/views/project/token/sharing-updates.pug +++ b/services/web/app/views/project/token/sharing-updates.pug @@ -7,6 +7,8 @@ block vars - var suppressFooter = true - var suppressCookieBanner = true - var suppressSkipToContent = true + - bootstrap5PageStatus = 'enabled' + - bootstrap5PageSplitTest = 'bs5-misc-pages-core' block append meta meta(name="ol-project_id" data-type="string" content=projectId) diff --git a/services/web/frontend/js/features/token-access/components/sharing-updates-root.tsx b/services/web/frontend/js/features/token-access/components/sharing-updates-root.tsx index 2d30c34510..476bc83881 100644 --- a/services/web/frontend/js/features/token-access/components/sharing-updates-root.tsx +++ b/services/web/frontend/js/features/token-access/components/sharing-updates-root.tsx @@ -11,6 +11,7 @@ import Notification from '@/shared/components/notification' import { sendMB } from '@/infrastructure/event-tracking' import LeaveProjectModal from './leave-project-modal' +import OLButton from '@/features/ui/components/ol/ol-button' function SharingUpdatesRoot() { const [showModal, setShowModal] = useState(false) @@ -67,86 +68,88 @@ function SharingUpdatesRoot() { handleCloseModal={() => setShowModal(false)} />
-
-
+
+
+