File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed
kafka-webview-ui/src/main Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
- [ Issue #72 ] ( https://github.com/SourceLabOrg/kafka-webview/issues/72 ) Bugfix User role input not displayed when creating new user.
8
8
- [ Issue #81 ] ( https://github.com/SourceLabOrg/kafka-webview/issues/81 ) Bugfix Handle NoClassDefFoundError exceptions gracefully.
9
9
- [ Issue #74 ] ( https://github.com/SourceLabOrg/kafka-webview/issues/74 ) Improvement UI Tweak to display large number of partitions in datatable views.
10
- - [ Issue #71 ] ( https://github.com/SourceLabOrg/kafka-webview/issues/71 ) Improvement Topics sorted in select boxes.
10
+ - [ Issue #71 ] ( https://github.com/SourceLabOrg/kafka-webview/issues/71 ) Improvement Topics sorted in select boxes.
11
+ - [ Issue #83 ] ( https://github.com/SourceLabOrg/kafka-webview/issues/83 ) Improvement Wrap key and message values in <pre ></pre > tags.
11
12
12
13
## 1.0.4 (06/11/2018)
13
14
- Update NPM dependencies for [ CVE-2017 -18214] ( https://nvd.nist.gov/vuln/detail/CVE-2017-18214 ) .
Original file line number Diff line number Diff line change @@ -8814,3 +8814,7 @@ hr.transparent {
8814
8814
top : 0 ;
8815
8815
width : 20px ;
8816
8816
height : 20px ; }
8817
+
8818
+ .overflow-scroll {
8819
+ overflow : scroll;
8820
+ }
Original file line number Diff line number Diff line change 26
26
</ a >
27
27
</ div >
28
28
</ div >
29
- < div class ="card-body ">
29
+ < div class ="card-body overflow-scroll ">
30
30
31
31
<!-- Stream Controls -->
32
32
< div class ="row ">
@@ -320,8 +320,8 @@ <h4 class="alert-heading">Stream Disconnected</h4>
320
320
< span class = "timestamp" title = "{{date}}" > { { timestamp} } </ span >
321
321
{ { / i f } }
322
322
</td >
323
- < td > { { key} } </ td >
324
- < td > { { value} } < / t d >
323
+ < td > < pre > { { key} } </ pre > </ td >
324
+ < td > < pre > { { value} } </ pre > < / t d >
325
325
</tr >
326
326
</ script >
327
327
</ section >
Original file line number Diff line number Diff line change 300
300
</ a >
301
301
</ div >
302
302
</ div >
303
- < div class ="card-body ">
303
+ < div class ="card-body overflow-scroll ">
304
304
305
305
<!-- Display Loader First -->
306
306
< div class ="alert alert-light " role ="alert " id ="loader " style ="display: block; ">
@@ -393,8 +393,8 @@ <h4 class="alert-heading">No Results Found</h4>
393
393
< span class = "timestamp" title = "{{date}}" > { { timestamp} } </ span >
394
394
{ { / i f } }
395
395
</td >
396
- < td > { { key} } </ td >
397
- < td > { { value} } < / t d >
396
+ < td > < pre > { { key} } </ pre > </ td >
397
+ < td > < pre > { { value} } </ pre > < / t d >
398
398
</tr >
399
399
</ script >
400
400
</ div >
You can’t perform that action at this time.
0 commit comments