Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
Bing Dai committed Feb 9, 2022
1 parent b1960a1 commit b3ee974
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/deprecation-item-source.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { get, action } from '@ember/object';
import { action } from '@ember/object';
import { inject as service } from '@ember/service';

import Component from '@glimmer/component';
export default class DeprecationItemSource extends Component {
@service port;

get url() {
let source = this.itemModel.map.source;
let source = this.args.itemModel.map.source;
if (this.known) {
return `${source}:${this.args.itemModel.map.line}`;
} else {
Expand Down

0 comments on commit b3ee974

Please sign in to comment.