Skip to content

Commit

Permalink
chore(all): fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 3, 2018
1 parent 676ff79 commit 932d92d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/null-virtual-repeat-strategy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NullRepeatStrategy } from "aurelia-templating-resources";
import { NullRepeatStrategy } from 'aurelia-templating-resources';

export class NullVirtualRepeatStrategy extends NullRepeatStrategy {
instanceChanged(repeat) {
Expand Down
2 changes: 1 addition & 1 deletion src/virtual-repeat-strategy-locator.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {RepeatStrategyLocator} from 'aurelia-templating-resources';
import {ArrayVirtualRepeatStrategy} from './array-virtual-repeat-strategy';
import {NullVirtualRepeatStrategy} from './null-virtual-repeat-strategy'
import {NullVirtualRepeatStrategy} from './null-virtual-repeat-strategy';

export class VirtualRepeatStrategyLocator extends RepeatStrategyLocator {
constructor() {
Expand Down

0 comments on commit 932d92d

Please sign in to comment.