Skip to content

Commit

Permalink
Fixing lint error and PR suggestion change to use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
beekermememe authored and diasbruno committed Jun 1, 2021
1 parent ce94d86 commit fc62ab1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/helpers/tabbable.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit fc62ab1

Please sign in to comment.