# HG changeset patch # User Lucas Thompson # Date 1499278310 -3600 # Node ID 97ffab611a557c6c3b793e396b4cd62595922683 # Parent ab43880f1cd5d965b13b58a483de30916696060f Explicitly set bin names property (variable used to be called binNames so was set implicitly, previous refactor renamed it to labels). Also remove debug statement. diff -r ab43880f1cd5 -r 97ffab611a55 src/app/visualisations/waves-base.component.ts --- a/src/app/visualisations/waves-base.component.ts Wed Jul 05 18:52:12 2017 +0100 +++ b/src/app/visualisations/waves-base.component.ts Wed Jul 05 19:11:50 2017 +0100 @@ -86,7 +86,6 @@ } renderPlayhead(initialTime: number, colour: string): PlayheadManager { - console.warn('waves base render playhead'); const cursor = new Waves.helpers.CursorLayer({ height: this.height, color: colour, @@ -248,7 +247,7 @@ tickColor: this.colour, textColor: this.colour, height: this.height, - labels + binNames: labels })); } }