This is an automated email from the ASF dual-hosted git repository. adar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 1610f6907f2973ddb5e3df7465faebd9af9f3855 Author: helifu <[email protected]> AuthorDate: Wed May 1 00:17:54 2019 +0800 [www] highlight primary key in tserver Web UI This patch is a follow on to https://gerrit.cloudera.org/#/c/12316/ Change-Id: I57dbcea938f9c6b436c7c4f98e7e9a89f2995784 Reviewed-on: http://gerrit.cloudera.org:8080/13187 Reviewed-by: Greg Solovyev <[email protected]> Reviewed-by: Grant Henke <[email protected]> Tested-by: Adar Dembo <[email protected]> --- www/tablet.mustache | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/tablet.mustache b/www/tablet.mustache index cbc0ff5..739dc0b 100644 --- a/www/tablet.mustache +++ b/www/tablet.mustache @@ -43,9 +43,9 @@ under the License. <tbody> {{#columns}} <tr> - <th>{{#is_key}}<u>{{/is_key}} - {{name}} - {{#is_key}}</u>{{/is_key}}</th> + <th> + {{#is_key}}<img src="key.png" width=12 height=6 /> {{/is_key}}{{name}} + </th> <td>{{id}}</a></td> <td>{{type}}</td> <td>{{encoding}}</td>
