CaptainChainsaw
CaptainChainsaw
Hi @Grubba27 I'm not sure if its something that can be reproduced via code. It seems to be a network issue and to reproduce you would need Win 11 and...
Got it sorted, changed my code to include a filter. Unfortunately I can't show the currency symbol: ``` .filter('decimalFilter', function () { return function (value) { return parseInt(value); }; })...
Sorted it, although its maybe a bit hacky: ``` .filter('decimalFilter', function () { return function (value) { return '£' + parseInt(value); }; }) ```
Ok thank you, much appreciated :)