From 4867a1ecaad7d2c9c1b815ffb5b39bc7ebc9ad6f Mon Sep 17 00:00:00 2001 From: piratefinn Date: Tue, 17 Apr 2018 14:17:57 +0100 Subject: [PATCH] made fixes --- bin/build-releases | 1 + src/app/panels/pie-panel.component.ts | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/bin/build-releases b/bin/build-releases index 1abdb98..f7f5334 100755 --- a/bin/build-releases +++ b/bin/build-releases @@ -1,4 +1,5 @@ #! /bin/bash +set -e VERSION=`git describe --tags` diff --git a/src/app/panels/pie-panel.component.ts b/src/app/panels/pie-panel.component.ts index 80f64e1..192105e 100644 --- a/src/app/panels/pie-panel.component.ts +++ b/src/app/panels/pie-panel.component.ts @@ -52,4 +52,11 @@ export class PiePanel implements OnInit { return rgba; } + // events + public chartClicked(e: any): void { + } + + public chartHovered(e: any): void { + } + }