fix: Empty State text font weight in Item Dashboard

This commit is contained in:
marination 2021-02-07 22:27:40 +05:30
parent eff675f45b
commit a97eb6a052

View File

@ -132,7 +132,7 @@ erpnext.stock.ItemDashboard = Class.extend({
var message = __("No Stock Available Currently");
this.content.find('.result').css('text-align', 'center');
$(`<div class='text-muted' style='margin: 20px 5px; font-weight: lighter;'>
$(`<div class='text-muted' style='margin: 20px 5px;'>
${message} </div>`).appendTo(this.result);
}
},