isite 2022.5.6 → 2022.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,7 +19,10 @@ app.filter('xmoney', function () {
19
19
  });
20
20
  app.filter('xmoney2', function () {
21
21
  return function (value) {
22
- return value.toFixed(2);
22
+ if (value) {
23
+ return value.toFixed(2);
24
+ }
25
+ return value;
23
26
  };
24
27
  });
25
28
  app.service('isite', [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isite",
3
- "version": "2022.05.06",
3
+ "version": "2022.05.07",
4
4
  "description": "Create Enterprise Multi-Language Web Site [Fast and Easy] ",
5
5
  "main": "index.js",
6
6
  "repository": {