Skip to content
Snippets Groups Projects
Commit 158e7f73 authored by Scott Berg's avatar Scott Berg
Browse files

Remove update blocking null check

parent b6f4e893
No related branches found
No related tags found
1 merge request!1Remove update blocking null check
......@@ -20,7 +20,7 @@ class MyUWProfile extends HTMLElement {
}
attributeChangedCallback(name, oldValue, newValue) {
if (typeof this.$circle !== 'undefined' && typeof this[name] !== 'undefined' && this[name] !== null) {
if (typeof this.$circle !== 'undefined') {
// Update the attribute internally
this[name] = newValue;
......
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