From d12a48f3fc94a819a8bf1e27b620a907c9647211 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sun, 16 Jan 2022 17:27:54 +0100 Subject: [PATCH] lint --- tabby-core/src/tabContextMenu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-core/src/tabContextMenu.ts b/tabby-core/src/tabContextMenu.ts index c369698d..2a9f70c9 100644 --- a/tabby-core/src/tabContextMenu.ts +++ b/tabby-core/src/tabContextMenu.ts @@ -123,7 +123,7 @@ export class CommonOptionsContextMenu extends TabContextMenuItemProvider { label: this.translate.instant('Color'), sublabel: this.translate.instant(TAB_COLORS.find(x => x.value === tab.color)?.name), submenu: TAB_COLORS.map(color => ({ - label: this.translate.instant(color.name), + label: this.translate.instant(color.name) ?? color.name, type: 'radio', checked: tab.color === color.value, click: () => {