Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2020-10-15 16:57:07 +01:00
parent efad42439e
commit 3e548bbc94
1 changed files with 2 additions and 3 deletions

View File

@ -121,10 +121,9 @@ export default class LeftPanel extends React.Component<IProps, IState> {
} }
const avatarUrlProp = `url(${avatarUrl})`; const avatarUrlProp = `url(${avatarUrl})`;
const existingValue = document.body.style.getPropertyValue("--avatar-url"); if (!avatarUrl) {
if (!avatarUrl && existingValue) {
document.body.style.removeProperty("--avatar-url"); document.body.style.removeProperty("--avatar-url");
} else if (avatarUrl && existingValue !== avatarUrlProp) { } else if (avatarUrl && document.body.style.getPropertyValue("--avatar-url") !== avatarUrlProp) {
document.body.style.setProperty("--avatar-url", avatarUrlProp); document.body.style.setProperty("--avatar-url", avatarUrlProp);
} }
}; };