From 54dad64ab49f89dabe88404897cb8b5830351b08 Mon Sep 17 00:00:00 2001 From: lotte Date: Wed, 31 Oct 2018 15:28:50 +0100 Subject: [PATCH] resolved lint error --- src/app/shared/testing/query-params-directive-stub.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shared/testing/query-params-directive-stub.ts b/src/app/shared/testing/query-params-directive-stub.ts index c19c5e6a5f..34216bb53c 100644 --- a/src/app/shared/testing/query-params-directive-stub.ts +++ b/src/app/shared/testing/query-params-directive-stub.ts @@ -6,5 +6,5 @@ import { Directive, Input } from '@angular/core'; selector: '[queryParams]', }) export class QueryParamsDirectiveStub { - @Input('queryParams') queryParams: any; + @Input() queryParams: any; }