Skip to content

Commit

Permalink
fix(ui5-shellbar): add missing dependency to ui5-popover (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
MapTo0 authored Mar 24, 2019
1 parent c00ab4a commit 912f434
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/main/src/ShellBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { isSpace, isEscape } from "@ui5/webcomponents-base/src/events/PseudoEven
import StandardListItem from "./StandardListItem";
import List from "./List";
import Icon from "./Icon";
import Popover from "./Popover";

// Template
import ShellBarRenderer from "./build/compiled/ShellBarRenderer.lit";
Expand Down Expand Up @@ -716,8 +717,10 @@ class ShellBar extends WebComponent {
static async define(...params) {
await Promise.all([
Icon.define(),
StandardListItem.define(),
List.define(),
Popover.define(),

StandardListItem.define(),
]);

super.define(...params);
Expand Down

0 comments on commit 912f434

Please sign in to comment.