Skip to content
Snippets Groups Projects
Unverified Commit e6e25449 authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire:
Browse files

Fix mixin name

parent 6f58ac8c
No related branches found
No related tags found
No related merge requests found
Pipeline #16920 passed with warnings
...@@ -24,7 +24,7 @@ export class CheckInPlaceSelect extends ScopedElementsMixin(AdapterLitElement) { ...@@ -24,7 +24,7 @@ export class CheckInPlaceSelect extends ScopedElementsMixin(AdapterLitElement) {
constructor() { constructor() {
super(); super();
Object.assign(CheckInPlaceSelect.prototype, errorUtils.backupMixin); Object.assign(CheckInPlaceSelect.prototype, errorUtils.errorMixin);
this.lang = 'de'; this.lang = 'de';
this.entryPointUrl = ''; this.entryPointUrl = '';
this.jsonld = null; this.jsonld = null;
......
...@@ -116,7 +116,7 @@ export const stripHTML = (string) => { ...@@ -116,7 +116,7 @@ export const stripHTML = (string) => {
/** /**
* We need this mixin so we can use this.sendSetPropertyEvent to post analytics events * We need this mixin so we can use this.sendSetPropertyEvent to post analytics events
*/ */
export const backupMixin = { export const errorMixin = {
/** /**
* Error handling for XHR errors * Error handling for XHR errors
* *
......
...@@ -27,7 +27,7 @@ export class PersonSelect extends ScopedElementsMixin(AdapterLitElement) { ...@@ -27,7 +27,7 @@ export class PersonSelect extends ScopedElementsMixin(AdapterLitElement) {
constructor() { constructor() {
super(); super();
Object.assign(PersonSelect.prototype, errorUtils.backupMixin); Object.assign(PersonSelect.prototype, errorUtils.errorMixin);
this.auth = {}; this.auth = {};
this.lang = 'de'; this.lang = 'de';
this.entryPointUrl = ''; this.entryPointUrl = '';
......
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