Skip to content

Commit

Permalink
Fix copy function
Browse files Browse the repository at this point in the history
Closes #301.
  • Loading branch information
jlblcc committed Mar 12, 2019
1 parent a054fe0 commit 74dbf60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/pods/contact/show/route.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Route from '@ember/routing/route';
import { copy } from '@ember/object/internals';
import { copy } from 'ember-copy';
import { inject as service } from '@ember/service';
import ScrollTo from 'mdeditor/mixins/scroll-to';

Expand Down
2 changes: 1 addition & 1 deletion app/pods/dictionary/show/route.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { inject as service } from '@ember/service';
import Route from '@ember/routing/route';
import { copy } from '@ember/object/internals';
import { copy } from 'ember-copy';

export default Route.extend({
flashMessages: service(),
Expand Down
2 changes: 1 addition & 1 deletion app/pods/record/show/route.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Route from '@ember/routing/route';
import { copy } from '@ember/object/internals';
import { copy } from 'ember-copy';

export default Route.extend({
//breadCrumb: {},
Expand Down

0 comments on commit 74dbf60

Please sign in to comment.