MC-2931 Add utm params to MC URLs

This commit is contained in:
Sidharth Vinod
2025-04-02 23:50:12 +05:30
parent 4d1a0ae07b
commit b17e136225
7 changed files with 42 additions and 16 deletions
+7 -3
View File
@@ -23,17 +23,21 @@
]);
const mermaidChartMenuItems = $derived([
{ label: 'Edit in Playground', icon: PlaygroundIcon, href: $urlsStore.mermaidChart.playground },
{
label: 'Edit in Playground',
icon: PlaygroundIcon,
href: $urlsStore.mermaidChart({ medium: 'main_menu' }).playground
},
{
label: 'Plugins',
icon: PluginIcon,
href: 'https://www.mermaidchart.com/plugins',
href: $urlsStore.mermaidChart({ medium: 'main_menu' }).plugins,
checkDiagramType: false
},
{
label: 'MermaidChart',
icon: MermaidChartIcon,
href: 'https://www.mermaidchart.com',
href: $urlsStore.mermaidChart({ medium: 'main_menu' }).home,
checkDiagramType: false
}
]);