Skip to content

Commit

Permalink
linting passing and bumping version.
Browse files Browse the repository at this point in the history
  • Loading branch information
daveshanley committed Jul 21, 2022
1 parent 8bd63dc commit 793f6c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class HeaderStatisticComponent extends BaseComponent {
return [staticCss];
}

@property( {type: Number})
@property({ type: Number })
value: number;

@property()
Expand All @@ -119,7 +119,9 @@ export class HeaderStatisticComponent extends BaseComponent {
render() {
return html`
<div class=${this.colorForScore()}>
<span class="grade">${this.value.toLocaleString()}${this.percentage ? '%' : ''}</span>
<span class="grade"
>${this.value.toLocaleString()}${this.percentage ? '%' : ''}</span
>
<span class="label"> ${this.label} </span>
</div>
`;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 793f6c1

Please sign in to comment.