Add opportunity quick action

cgen-018b0268e44544b98bcda5e192d9f5b2
This commit is contained in:
Builder.io 2025-10-14 04:25:37 +00:00
parent 8f4f5e4ac1
commit 32b2701c04

View file

@ -364,6 +364,22 @@ export default function Admin() {
icon: ClipboardList,
action: () => setActiveTab("operations"),
},
{
label: "Opportunity applicants",
description:
"Review contributor and career applications from Opportunities.",
icon: Users,
action: () => {
setActiveTab("operations");
if (typeof window !== "undefined") {
setTimeout(() => {
document
.getElementById("opportunity-applications")
?.scrollIntoView({ behavior: "smooth", block: "start" });
}, 75);
}
},
},
{
label: "Open Builder CMS",
description: "Edit marketing pages and landing content in Builder.io.",