From 845d6c63731fb0e09f8b7bb9255c70876f5cdaba Mon Sep 17 00:00:00 2001 From: Clem Fern Date: Sat, 18 Nov 2023 16:22:34 +0100 Subject: [PATCH] lint b4777fd4a8595d9d72842529d7eef46ccf716607 --- tabby-core/src/components/appRoot.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-core/src/components/appRoot.component.ts b/tabby-core/src/components/appRoot.component.ts index 0f0290f5..7f570237 100644 --- a/tabby-core/src/components/appRoot.component.ts +++ b/tabby-core/src/components/appRoot.component.ts @@ -248,6 +248,6 @@ export class AppRootComponent { } isTilteBarNeeded (): boolean { - return this.config.store.appearance.frame == 'thin' && this.config.store.appearance.tabsLocation != 'top' && this.config.store.appearance.tabsLocation != 'bottom' + return this.config.store.appearance.frame === 'thin' && this.config.store.appearance.tabsLocation !== 'top' && this.config.store.appearance.tabsLocation !== 'bottom' } }