Skip to content
Snippets Groups Projects
Commit 35e51170 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Move person-profile to scoped

parent 8aa1f980
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ import {css, html, LitElement} from 'lit-element'; ...@@ -3,7 +3,7 @@ import {css, html, LitElement} from 'lit-element';
import * as commonUtils from 'vpu-common/utils'; import * as commonUtils from 'vpu-common/utils';
import * as commonStyles from 'vpu-common/styles'; import * as commonStyles from 'vpu-common/styles';
import {ScopedElementsMixin} from '@open-wc/scoped-elements'; import {ScopedElementsMixin} from '@open-wc/scoped-elements';
import 'vpu-person-profile'; import {PersonProfile} from 'vpu-person-profile';
const i18n = createI18nInstance(); const i18n = createI18nInstance();
...@@ -18,7 +18,7 @@ class AppShellUserProfile extends ScopedElementsMixin(LitElement) { ...@@ -18,7 +18,7 @@ class AppShellUserProfile extends ScopedElementsMixin(LitElement) {
static get scopedElements() { static get scopedElements() {
return { return {
'vpu-person-profile': customElements.get('vpu-person-profile'), 'vpu-person-profile': PersonProfile,
}; };
} }
......
person-profile @ f80439be
Subproject commit f0c0e9437906d06618036df0af53c9ba47f08b1f Subproject commit f80439be64128e8f804ec8e3cf35065c1ed454f9
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