0 && { inert: "true" }} css={{
...lockedAcl.size > 0 && { opacity: .7 },
}}>
diff --git a/frontend/src/routes/manage/Video/Access.tsx b/frontend/src/routes/manage/Video/Access.tsx
index 47510ee4a..5d496c8d9 100644
--- a/frontend/src/routes/manage/Video/Access.tsx
+++ b/frontend/src/routes/manage/Video/Access.tsx
@@ -108,6 +108,7 @@ type AccessUIProps = {
}
const AccessUI: React.FC
= ({ event, knownRoles }) => {
+ const { t } = useTranslation();
const saveModalRef = useRef(null);
const [commitError, setCommitError] = useState(null);
const [commit, inFlight] = useMutation(updateVideoAcl);
@@ -144,6 +145,11 @@ const AccessUI: React.FC = ({ event, knownRoles }) => {
{event.hasActiveWorkflows &&
}
+ {aclLockedToSeries && (
+
+ {t("manage.access.locked-to-series")}
+
+ )}