feat(views/table): update new column in context menu to support relations also

This commit is contained in:
Elian Doran
2025-07-19 14:17:48 +03:00
parent cb8a5cbb62
commit d487da0b2f
4 changed files with 13 additions and 5 deletions

View File

@@ -26,6 +26,11 @@ export interface MenuCommandItem<T> {
title: string;
command?: T;
type?: string;
/**
* The icon to display in the menu item.
*
* If not set, no icon is displayed and the item will appear shifted slightly to the left if there are other items with icons. To avoid this, use `bx bx-empty`.
*/
uiIcon?: string;
badges?: MenuItemBadge[];
templateNoteId?: string;