From 5f92a5f8ca47554f22ef1ad44de3cbffc6793130 Mon Sep 17 00:00:00 2001 From: Kumar Priyansh Date: Mon, 3 Jun 2019 05:45:20 +0530 Subject: Fixed price display --- shared/Dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/Dashboard.js b/shared/Dashboard.js index 5fb42a0..34ab101 100644 --- a/shared/Dashboard.js +++ b/shared/Dashboard.js @@ -46,7 +46,7 @@ $(document).ready(function(){ for(i=0; i< Object.keys(result[productid].productDescription).length; i++) { str += ('
  • ' + result[productid].productDescription[i] + '
  • '); } - $('#loader').append('

    '+result[productid].productName+'

      '+str+'

    $17.99

    '); + $('#loader').append('

    '+result[productid].productName+'

      '+str+'

    $'+result[productid].productPrice+'

    '); }) } function showErrorDiv() { -- cgit v1.2.3