@itfin/components 1.2.131 → 1.2.132

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itfin/components",
3
- "version": "1.2.131",
3
+ "version": "1.2.132",
4
4
  "author": "Vitalii Savchuk <esvit666@gmail.com>",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -117,7 +117,7 @@ class itfMoneyField extends Vue {
117
117
  }
118
118
 
119
119
  get maskedValue() {
120
- return this.value ? this.value.toString() : '';
120
+ return (this.value !== null && typeof this.value !== 'undefined') ? this.value.toString() : '';
121
121
  }
122
122
 
123
123
  isInvalid() {