Skip to content

Commit

Permalink
chore: fix broken overlay system demos
Browse files Browse the repository at this point in the history
  • Loading branch information
tlouisse committed Jan 25, 2024
1 parent 69c9da8 commit dd624c1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable max-classes-per-file */
/* eslint-disable import/no-extraneous-dependencies */
import { html, LitElement, css } from 'lit';
import { OverlayMixin } from '@lion/ui/overlays.js';
import { OverlayMixin, withDropdownConfig } from '@lion/ui/overlays.js';
import { LionButton } from '@lion/ui/button.js';

/**
Expand All @@ -12,6 +12,7 @@ class DemoElUsingOverlayMixin extends OverlayMixin(LitElement) {
_defineOverlayConfig() {
return /** @type {OverlayConfig} */ ({
placementMode: 'global',
...withDropdownConfig(),
});
}

Expand Down

0 comments on commit dd624c1

Please sign in to comment.