From d9d04f4857ae9516ecba655c6603d7a0a56ee509 Mon Sep 17 00:00:00 2001 From: Jonathan Wong Date: Sun, 27 Sep 2015 14:17:51 -0700 Subject: [PATCH] Remove href for non-expandable rows. --- data/interfaces/default/js/tables/history_table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/interfaces/default/js/tables/history_table.js b/data/interfaces/default/js/tables/history_table.js index 2c499b0c..84eae0ca 100644 --- a/data/interfaces/default/js/tables/history_table.js +++ b/data/interfaces/default/js/tables/history_table.js @@ -52,7 +52,7 @@ history_table_options = { $(td).html('
' + expand_history + ' ' + date + '
'); } else { date = moment(cellData, "X").format(date_format); - $(td).html('
 ' + date + '
'); + $(td).html('
 ' + date + '
'); } }, "searchable": false,