File tree 1 file changed +21
-21
lines changed
1 file changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -109,27 +109,27 @@ div.vue-form-generator(v-if='schema != null')
109
109
},
110
110
111
111
computed: {
112
- fields () {
113
- let res = [];
114
- if (this .schema && this .schema .fields ) {
115
- each (this .schema .fields , (field ) => {
116
- if (! this .multiple || field .multi === true )
117
- res .push (field);
118
- });
119
- }
120
-
121
- return res;
122
- },
123
- groups () {
124
- let res = [];
125
- if (this .schema && this .schema .groups ) {
126
- each (this .schema .groups , (group ) => {
127
- res .push (group);
128
- });
129
- }
130
-
131
- return res;
132
- }
112
+ fields () {
113
+ let res = [];
114
+ if (this .schema && this .schema .fields ) {
115
+ each (this .schema .fields , (field ) => {
116
+ if (! this .multiple || field .multi === true )
117
+ res .push (field);
118
+ });
119
+ }
120
+
121
+ return res;
122
+ },
123
+ groups () {
124
+ let res = [];
125
+ if (this .schema && this .schema .groups ) {
126
+ each (this .schema .groups , (group ) => {
127
+ res .push (group);
128
+ });
129
+ }
130
+
131
+ return res;
132
+ }
133
133
},
134
134
135
135
watch: {
You can’t perform that action at this time.
0 commit comments