From fc62ab13b099f1e47487d9e65ff2a9e0412076ad Mon Sep 17 00:00:00 2001 From: Brendan Keogh Date: Fri, 28 May 2021 08:10:15 -0600 Subject: [PATCH] Fixing lint error and PR suggestion change to use double quotes --- src/helpers/tabbable.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/helpers/tabbable.js b/src/helpers/tabbable.js index f149c9de..f2ebbc9c 100644 --- a/src/helpers/tabbable.js +++ b/src/helpers/tabbable.js @@ -27,7 +27,8 @@ function hidesContents(element) { (element.scrollWidth <= 0 && element.scrollHeight <= 0) : style.getPropertyValue("display") == "none"; } catch (exception) { - console.warn('Failed to inspect element style'); + // eslint-disable-next-line no-console + console.warn("Failed to inspect element style"); return false; } }