diff --git a/resources/views/invoices/knockout.blade.php b/resources/views/invoices/knockout.blade.php index 46c8dafc7..b3da8dabe 100644 --- a/resources/views/invoices/knockout.blade.php +++ b/resources/views/invoices/knockout.blade.php @@ -1042,7 +1042,7 @@ ko.bindingHandlers.productTypeahead = { templates: { suggestion: function(item) { return '
' + _.escape(item.product_key) + "
" - + roundToTwo(item.cost, true) + ' • ' + + roundSignificant(item.cost, true) + ' • ' + _.escape(item.notes.substring(0, 100)) + '
' } }, source: searchData(allBindings.items, allBindings.key, false, 'notes'),