pnpm prepr

This commit is contained in:
tdgao
2026-09-03 14:30:57 -06:00
parent cb94b5acc8
commit aa33e15cf5
3 changed files with 7 additions and 8 deletions
@@ -455,12 +455,9 @@ const visibleNags = computed<Nag[]>(() => {
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<string> | null = null
@@ -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
@@ -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"
},