File tree Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Expand file tree Collapse file tree 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')
109109 },
110110
111111 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+ }
133133 },
134134
135135 watch: {
You can’t perform that action at this time.
0 commit comments