Add opportunity quick action
cgen-018b0268e44544b98bcda5e192d9f5b2
This commit is contained in:
parent
8f4f5e4ac1
commit
32b2701c04
1 changed files with 16 additions and 0 deletions
|
|
@ -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.",
|
||||
|
|
|
|||
Loading…
Reference in a new issue