diff --git a/CHANGELOG.md b/CHANGELOG.md index e60302d..1a91a76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ # Next Release +# 0.1.9 + +* Made layout change to make it neater when chart doesn't show +* Made hotfix + # 0.1.8 * Amended how category is pulled from server 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/package-lock.json b/package-lock.json index c74a703..b7e95ad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "localloop-web", - "version": "0.1.8", + "version": "0.1.9", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6b9059f..de18cf5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "localloop-web", - "version": "0.1.8", + "version": "0.1.9", "description": "LocalLoop Web - Web interface for LocalLoop app", "author": "", "url": "http://www.peartrade.org", 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 { + } + }