From 47f0c995da2af150bdc2ca64c5088dc32d67f024 Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Tue, 14 Jun 2016 16:55:01 -0400 Subject: [PATCH] style: fix linter errors --- src/components/searchbar/searchbar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/searchbar/searchbar.ts b/src/components/searchbar/searchbar.ts index bef595cacd..7d3f420aa5 100644 --- a/src/components/searchbar/searchbar.ts +++ b/src/components/searchbar/searchbar.ts @@ -267,7 +267,7 @@ export class Searchbar { * Align the input placeholder left on focus or if a value exists */ shouldAlignLeft() { - return ( (this._value && this._value.toString().trim() != '') || this._sbHasFocus == true ); + return ( (this._value && this._value.toString().trim() !== '') || this._sbHasFocus === true ); } /**