diff --git a/apps/frontend/src/components/ui/moderation/ModerationProjectNags.vue b/apps/frontend/src/components/ui/moderation/ModerationProjectNags.vue index 6669d447ca..daa416ad0a 100644 --- a/apps/frontend/src/components/ui/moderation/ModerationProjectNags.vue +++ b/apps/frontend/src/components/ui/moderation/ModerationProjectNags.vue @@ -455,12 +455,9 @@ const visibleNags = computed(() => { watch(visibleNags, () => nextTick(updateNagScrollShadows)) -watch( - isProcessing, - (processing) => { - if (processing && !props.collapsed) emit('toggleCollapsed') - }, -) +watch(isProcessing, (processing) => { + if (processing && !props.collapsed) emit('toggleCollapsed') +}) let validationProjectId = props.project.id let previousActionableNagKeys: Set | null = null diff --git a/apps/frontend/src/composables/project-slug-suggestions.ts b/apps/frontend/src/composables/project-slug-suggestions.ts index e49c88e0ec..4c0476864a 100644 --- a/apps/frontend/src/composables/project-slug-suggestions.ts +++ b/apps/frontend/src/composables/project-slug-suggestions.ts @@ -99,8 +99,7 @@ export function useProjectSlugSuggestions({ } watch( - () => - [toValue(title), toValue(username), toValue(currentProjectId), toValue(enabled)] as const, + () => [toValue(title), toValue(username), toValue(currentProjectId), toValue(enabled)] as const, ([newTitle, newUsername, projectId, isEnabled]) => { if (import.meta.server) return diff --git a/apps/frontend/src/locales/en-US/index.json b/apps/frontend/src/locales/en-US/index.json index ada03411ff..ab65b19ac0 100644 --- a/apps/frontend/src/locales/en-US/index.json +++ b/apps/frontend/src/locales/en-US/index.json @@ -3422,6 +3422,9 @@ "project-member-header.success-join": { "message": "You have joined the project team" }, + "project-moderation-nags.project-submitted-for-review": { + "message": "Your project has been submitted for review!" + }, "project-moderation-nags.publishing-checklist": { "message": "Publishing checklist" },