super context does not exist within a callback

This commit is contained in:
Jacob Overgaard
2024-04-04 09:14:30 +02:00
parent 48a78b2d46
commit f03727e149

View File

@@ -101,7 +101,7 @@ export class UmbInputEntityElement extends FormControlMixin(UmbLitElement) {
this.observe(
this.#pickerContext.selection,
(selection) => (super.value = selection?.join(',') ?? ''),
(selection) => (this.value = selection?.join(',') ?? ''),
'observeSelection',
);