From c50e8b3532c3e9d8ef6409999ba31dc23d619e12 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Thu, 16 Mar 2017 19:01:44 +0000 Subject: [PATCH] [WebUI] Display symbols --- interface/js/app/history.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/js/app/history.js b/interface/js/app/history.js index 3ffb01e20..a19414114 100644 --- a/interface/js/app/history.js +++ b/interface/js/app/history.js @@ -58,7 +58,7 @@ function($) { score = 'label-danger'; } - console.log(item) + var symbols = Object.keys(item.symbols); var nitem = []; nitem.push('' + @@ -77,9 +77,9 @@ function($) { '">' + item.score.toFixed(2) + ' / ' + item.required_score.toFixed(2) + ''); - nitem.push( '
' + item.symbols + '
'); + symbols + '">' + symbols + ''); nitem.push('' + item.size + ''); nitem.push('' + -- 2.39.5