Skip to content

Commit

Permalink
correcting trailing spaces and missing semicolon according to npm lint
Browse files Browse the repository at this point in the history
  • Loading branch information
akaiap committed Nov 29, 2024
1 parent 2cec362 commit ebac79b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web-client/public/js/setup-handlers.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export const setupHandlers = grnState => {

const explicitlySetStyle = element => {
const cssStyleDeclarationComputed = window.getComputedStyle(element);
const computedStyleObj = {};
const computedStyleObj = {};


for (let i = 0; i < cssStyleDeclarationComputed.length; i++) {
Expand All @@ -134,7 +134,7 @@ export const setupHandlers = grnState => {
}

if (computedStyleObj) {
Object.assign(element.style, computedStyleObj)
Object.assign(element.style, computedStyleObj);
}
};

Expand Down

0 comments on commit ebac79b

Please sign in to comment.