Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
fix: export htmlSafe from @ember/template
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeanjones committed Dec 29, 2022
1 parent 7dbbac8 commit 4c7d27f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Component from '@ember/component';
import { layout, tagName } from '@ember-decorators/component';
import { reads } from '@ember/object/computed';
import { computed, set } from '@ember/object';
import { htmlSafe } from '@ember/string';
import { htmlSafe } from '@ember/template';
import hide from '@popperjs/core/lib/modifiers/hide';
import flip from '@popperjs/core/lib/modifiers/flip';
import arrow from '@popperjs/core/lib/modifiers/arrow';
Expand Down
3 changes: 2 additions & 1 deletion addon/components/ui-collapse/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import { computed, set } from '@ember/object';
import { addObserver } from '@ember/object/observers';
import { not, and } from '@ember/object/computed';
import { isPresent } from '@ember/utils';
import { camelize, htmlSafe } from '@ember/string';
import { camelize } from '@ember/string';
import { htmlSafe } from '@ember/template';
import { scheduleOnce, next } from '@ember/runloop';
import { Promise } from 'rsvp';
import { layout, attribute, className, classNames } from '@ember-decorators/component';
Expand Down
2 changes: 1 addition & 1 deletion addon/components/ui-popper/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { computed, set } from '@ember/object';
import { not } from '@ember/object/computed';
import { assert } from '@ember/debug';
import { guidFor } from '@ember/object/internals';
import { htmlSafe } from '@ember/string';
import { htmlSafe } from '@ember/template';
import { debounce } from '@ember/runloop';
import { layout, tagName } from '@ember-decorators/component';
import { createPopper } from '@popperjs/core/lib/popper-lite';
Expand Down

0 comments on commit 4c7d27f

Please sign in to comment.