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/dashboard/dashboard-customer.component.html b/src/app/dashboard/dashboard-customer.component.html index 5325ccc..b0c8895 100644 --- a/src/app/dashboard/dashboard-customer.component.html +++ b/src/app/dashboard/dashboard-customer.component.html @@ -14,29 +14,29 @@
-
-
-
-
-
-

Weekly Spending by Category

+
+
+
+
+
+

Weekly Spending by Category

+
+
+
+ +
+
-
-
- -
-
-
-
-
+
+
@@ -55,8 +55,8 @@
-
-
+
+
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 { + } + }