fixes after merge + tslint changes

This commit is contained in:
lotte
2019-12-03 11:43:19 +01:00
parent dc316dc6cb
commit c48932431f
34 changed files with 170 additions and 167 deletions

View File

@@ -10,7 +10,7 @@ export class ObjectValuesPipe implements PipeTransform {
* @param value An object
* @returns {any} Array with all values of the input object
*/
transform(value, args:string[]): any {
transform(value, args: string[]): any {
const values = [];
Object.values(value).forEach((v) => values.push(v));
return values;