Skip to content

Commit 826a816

Browse files
committed
fix hivivo#11: space after colon
1 parent 42bb4ce commit 826a816

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# ngx-json-viewer
22

3-
JSON formatter and viewer for Angular 2/4/5/6+
3+
JSON formatter and viewer for Angular 2/4/5/6/7+
44

55
Live demo: https://stackblitz.com/edit/ngx-json-viewer
66

77
## Install
88
```bash
9-
# For Angular 4/5/6:
9+
# For Angular 4/5/6/7:
1010
npm install ngx-json-viewer
1111

1212
# For Angular 2:

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ngx-json-viewer",
3-
"version": "2.3.1",
4-
"description": "JSON formatter / viewer for Angular 2/4/5/6+",
3+
"version": "2.4.0",
4+
"description": "JSON formatter / viewer for Angular 2/4/5/6/7+",
55
"keywords": [
66
"angular",
77
"json"

src/ngx-json-viewer/ngx-json-viewer.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}">
1212
<div *ngIf="isExpandable(segment)" class="toggler"></div>
1313
<span class="segment-key">{{ segment.key }}</span>
14-
<span class="segment-separator">:</span>
14+
<span class="segment-separator">: </span>
1515
<span *ngIf="!segment.expanded || !isExpandable(segment)" class="segment-value">{{ segment.description }}</span>
1616
</section>
1717
<section *ngIf="segment.expanded && isExpandable(segment)" class="children">

0 commit comments

Comments
 (0)