UNPKG

@grafana/ui

Version:
17 lines (15 loc) 426 B
const linkModelToContextMenuItems = (links) => { return links().map((link) => { return { label: link.title, ariaLabel: link.title, // TODO: rename to href url: link.href, target: link.target, icon: `${link.target === "_blank" ? "external-link-alt" : "link"}`, onClick: link.onClick }; }); }; export { linkModelToContextMenuItems }; //# sourceMappingURL=dataLinks.mjs.map