mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
fixes after merge + tslint changes
This commit is contained in:
@@ -10,7 +10,7 @@ export class ObjectKeysPipe implements PipeTransform {
|
||||
* @param value An object
|
||||
* @returns {any} Array with all keys the input object
|
||||
*/
|
||||
transform(value, args:string[]): any {
|
||||
transform(value, args: string[]): any {
|
||||
const keys = [];
|
||||
Object.keys(value).forEach((k) => keys.push(k));
|
||||
return keys;
|
||||
|
Reference in New Issue
Block a user