We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76ffd99 commit 62fbefdCopy full SHA for 62fbefd
1 file changed
src/features/common/components/context-menu/context-menu.tsx
@@ -7,6 +7,7 @@ import jwtLogoString from "@/public/img/jwt-logo.svg?raw";
7
import jwtSymbolString from "@/public/img/jwt-symbol.svg?raw";
8
import jwtWordmarkString from "@/public/img/jwt-wordmark.svg?raw";
9
import { Button } from "react-aria-components";
10
+import { a } from "vitest/dist/suite-dWqIFb_-.js";
11
12
interface ContextMenuProps {
13
dictionary: BrandDictionaryModel;
@@ -87,6 +88,10 @@ const ContextMenu: FC<ContextMenuProps> = ({
87
88
{dictionary.menu.brand.wordmark.downloadLabel}
89
</a>
90
</div>
91
+ <div className={styles.groupLabel}>{dictionary.menu.tools.label}</div>
92
+ {dictionary.menu.tools.items.map((el) => (
93
+ <a className={styles.menuItem} key={el.url} href={el.url}>{el.label}</a>
94
+ ))}
95
96
);
97
};
0 commit comments