remove logs

This commit is contained in:
Niels Lyngsø
2023-08-03 10:33:48 +02:00
parent fbe51273bc
commit f31c3e1f38

View File

@@ -59,11 +59,9 @@ export class UmbExtensionElementController<
#assignProperties = () => {
if (!this._component || !this.#properties) return;
console.log(this._component, 'assignProperties??', this.#properties);
// TODO: we could optimize this so we only re-set the updated props.
Object.keys(this.#properties).forEach((key) => {
console.log('prop:', key, this.#properties![key]);
(this._component as any)[key] = this.#properties![key];
});
};