Skip to content
Snippets Groups Projects
Commit a1d42290 authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Add missing semicolon

parent aa4b8b39
No related branches found
No related tags found
No related merge requests found
Pipeline #84000 failed
......@@ -448,9 +448,9 @@ export function getButtonCSS() {
let hoverBaseCheck = false;
if (docStyle) {
const hoverBase = docStyle.getPropertyValue('--dbp-override-hover-base');
hoverBaseCheck = hoverBase ? true : false
hoverBaseCheck = hoverBase ? true : false;
const hoverText = docStyle.getPropertyValue('--dbp-override-hover-text');
hoverTextCheck = hoverText ? true : false
hoverTextCheck = hoverText ? true : false;
}
let hoverTextStyle = css``;
......@@ -1141,9 +1141,9 @@ export function getLinkCss() {
let hoverBaseCheck = false;
if (docStyle) {
const hoverBase = docStyle.getPropertyValue('--dbp-override-hover-base');
hoverBaseCheck = hoverBase ? true : false
hoverBaseCheck = hoverBase ? true : false;
const hoverText = docStyle.getPropertyValue('--dbp-override-hover-text');
hoverTextCheck = hoverText ? true : false
hoverTextCheck = hoverText ? true : false;
}
let hoverTextStyle = css``;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment