Merge branch 'master' of https://github.com/primefaces/primevue
commit
86350195b5
|
@ -56,6 +56,15 @@ export default {
|
|||
},
|
||||
|
||||
resolveFieldData(data, field) {
|
||||
try {
|
||||
const value = data[field];
|
||||
if (value)
|
||||
return value;
|
||||
}
|
||||
catch {
|
||||
// do nothing and continue to other methods to resolve field data
|
||||
}
|
||||
|
||||
if (data && Object.keys(data).length && field) {
|
||||
if (this.isFunction(field)) {
|
||||
return field(data);
|
||||
|
|
|
@ -13344,7 +13344,7 @@
|
|||
},
|
||||
{
|
||||
"name": "fileSizeTypes",
|
||||
"optional": true,
|
||||
"optional": false,
|
||||
"readonly": false,
|
||||
"type": "string[]",
|
||||
"default": ""
|
||||
|
|
Loading…
Reference in New Issue