Github user arina-ielchiieva commented on a diff in the pull request:
https://github.com/apache/drill/pull/928#discussion_r143147464
--- Diff: exec/java-exec/src/main/resources/rest/index.ftl ---
@@ -74,23 +79,66 @@
<div class="row">
<div class="col-md-12">
- <h3>Encryption Info <span class="label label-primary"></span></h3>
+ <h3>Encryption</h3>
<div class="table-responsive">
- <table class="table table-hover">
+ <table class="table table-hover" style="width: auto;">
<tbody>
<tr>
- <td>Client to Bit Encryption:</td>
- <td>${model.isUserEncryptionEnabled()?string("enabled",
"disabled")}</td>
+ <td>Client to Bit Encryption</td>
+ <td class="list-value"
>${model.isUserEncryptionEnabled()?string("Enabled", "Disabled")}</td>
--- End diff --
Redundant spaces after `class="list-value"`
---