We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b227eb4 commit 3b750b3Copy full SHA for 3b750b3
src/fields/core/fieldRadios.vue
@@ -66,9 +66,13 @@ export default {
66
return currentValue === this.value;
67
},
68
isItemDisabled(item) {
69
- if(this.disabled) return true;
+ if (this.disabled) {
70
+ return true;
71
+ }
72
let disabled = objGet(item, "disabled", false);
- if(isFunction(disabled)) return disabled(this.model);
73
+ if (isFunction(disabled)) {
74
+ return disabled(this.model);
75
76
return disabled;
77
}
78
0 commit comments