mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
Let linting exit with a nonzero status
This commit is contained in:
@@ -18,7 +18,7 @@ export class RouteService {
|
||||
}
|
||||
|
||||
hasQueryParam(paramName: string): Observable<boolean> {
|
||||
return this.route.queryParamMap.map((map) => {return map.has(paramName);});
|
||||
return this.route.queryParamMap.map((map) => map.has(paramName));
|
||||
}
|
||||
|
||||
hasQueryParamWithValue(paramName: string, paramValue: string): Observable<boolean> {
|
||||
|
Reference in New Issue
Block a user