From 793f6c10d8d5ebbd1da9bfce6f5f8f2eb08b57c7 Mon Sep 17 00:00:00 2001 From: Dave Shanley Date: Thu, 21 Jul 2022 15:31:43 -0400 Subject: [PATCH] linting passing and bumping version. --- .../ui/src/components/header/header-statistic-component.ts | 6 ++++-- package.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/html-report/ui/src/components/header/header-statistic-component.ts b/html-report/ui/src/components/header/header-statistic-component.ts index 6896b0ba..7a047b37 100644 --- a/html-report/ui/src/components/header/header-statistic-component.ts +++ b/html-report/ui/src/components/header/header-statistic-component.ts @@ -104,7 +104,7 @@ export class HeaderStatisticComponent extends BaseComponent { return [staticCss]; } - @property( {type: Number}) + @property({ type: Number }) value: number; @property() @@ -119,7 +119,9 @@ export class HeaderStatisticComponent extends BaseComponent { render() { return html`
- ${this.value.toLocaleString()}${this.percentage ? '%' : ''} + ${this.value.toLocaleString()}${this.percentage ? '%' : ''} ${this.label}
`; diff --git a/package.json b/package.json index d166c82a..eecf6ce6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@quobix/vacuum", - "version": "0.0.15", + "version": "0.0.17", "description": "The world's fastest, most scalable and complete OpenAPI parser", "type": "module", "author": "Dave Shanley",