Skip to content

Commit

Permalink
Merge pull request #44 from Gavant/bug/fix-dropdown-menu-glint
Browse files Browse the repository at this point in the history
Fixing dropdown menu glint component
  • Loading branch information
bakerac4 authored Jan 12, 2023
2 parents 2b17935 + 06433d4 commit 27e9e68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap-dropdown/src/glint.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Easily allow apps, which are not yet using strict mode templates, to consume your Glint types, by importing this file.
// Add all your components, helpers and modifiers to the template registry here, so apps don't have to do this.
import { BasicDropdownSignature } from 'ember-basic-dropdown/components/basic-dropdown';
import BasicDropdown from 'ember-basic-dropdown/components/basic-dropdown';

// See https://typed-ember.gitbook.io/glint/using-glint/ember/authoring-addons
import DropdownAction from 'components/dropdown-action';
Expand All @@ -10,6 +10,6 @@ declare module '@glint/environment-ember-loose/registry' {
export default interface Registry {
DropdownAction: typeof DropdownAction;
DropdownLink: typeof DropdownLink;
DropdownMenu: BasicDropdownSignature;
DropdownMenu: typeof BasicDropdown;
}
}

0 comments on commit 27e9e68

Please sign in to comment.