Skip to content

Commit

Permalink
Merge pull request miragejs#2382 from miragejs/htmlSafe-import
Browse files Browse the repository at this point in the history
Update `htmlSafe` import path
  • Loading branch information
SergeAstapov authored Apr 12, 2022
2 parents 350e126 + 453b3e5 commit 43917be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/dummy/app/models/comment.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Model, { attr, belongsTo } from '@ember-data/model';
import compileMarkdown from 'ember-cli-addon-docs/utils/compile-markdown';
import { htmlSafe } from '@ember/string';
import { htmlSafe } from '@ember/template';

export default class Comment extends Model {
@belongsTo() user;
Expand Down
2 changes: 1 addition & 1 deletion tests/dummy/app/models/post.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Model, { attr, hasMany } from '@ember-data/model';
import yaml from 'js-yaml';
import compileMarkdown from 'ember-cli-addon-docs/utils/compile-markdown';
import { htmlSafe } from '@ember/string';
import { htmlSafe } from '@ember/template';

export default class Post extends Model {
@hasMany() comments;
Expand Down

0 comments on commit 43917be

Please sign in to comment.