update zifferjs

This commit is contained in:
2023-08-16 20:39:22 +03:00
parent 3b215b622f
commit d524a5290f
3 changed files with 6 additions and 6 deletions

View File

@@ -4,7 +4,7 @@ export class Pattern {
_current : Event | undefined = undefined;
constructor(values: number[]) {
this.events = values.map((value, index) => new Event(value));
this.events = values.map((value) => new Event(value));
this.buildLinks();
}