Add icon size options to mapping icons

This commit is contained in:
Pieter Vander Vennet 2022-02-17 23:54:14 +01:00
parent 29ad3be280
commit 2e6069b95b
10 changed files with 159 additions and 44 deletions

View file

@ -130,7 +130,7 @@ export class Fuse<T> extends DesugaringStep<T> {
Utils.Dedup([].concat(...steps.map(step => step.modifiedAttributes))),
"Fuse of "+steps.map(s => s.name).join(", ")
);
this.steps = steps;
this.steps = Utils.NoNull(steps);
}
convert(json: T, context: string): { result: T; errors: string[]; warnings: string[], information: string[] } {