@farm-investimentos/front-mfe-components 2.4.5 → 2.4.6

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": "@farm-investimentos/front-mfe-components",
3
- "version": "2.4.5",
3
+ "version": "2.4.6",
4
4
  "author": "farm investimentos",
5
5
  "private": false,
6
6
  "main": "./dist/front-mfe-components.common.js",
@@ -87,9 +87,7 @@ export default Vue.extend({
87
87
  /**
88
88
  * v-model for data-table-select
89
89
  */
90
- value: {
91
- required: true,
92
- },
90
+ value: {},
93
91
  /**
94
92
  * Original header props
95
93
  */
@@ -100,7 +98,7 @@ export default Vue.extend({
100
98
  computed: {
101
99
  inputVal: {
102
100
  get() {
103
- return this.value;
101
+ return this.value ? this.value : '';
104
102
  },
105
103
  set(val) {
106
104
  this.$emit('input', val);