Merge branch 'master' of https://github.com/primefaces/primevue
commit
86350195b5
|
@ -56,6 +56,15 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
resolveFieldData(data, field) {
|
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 (data && Object.keys(data).length && field) {
|
||||||
if (this.isFunction(field)) {
|
if (this.isFunction(field)) {
|
||||||
return field(data);
|
return field(data);
|
||||||
|
|
|
@ -13344,7 +13344,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fileSizeTypes",
|
"name": "fileSizeTypes",
|
||||||
"optional": true,
|
"optional": false,
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"type": "string[]",
|
"type": "string[]",
|
||||||
"default": ""
|
"default": ""
|
||||||
|
|
Loading…
Reference in New Issue