File tree 3 files changed +1
-3
lines changed
3 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ export default {
58
58
div .radio-container {
59
59
margin : 0.25rem auto ;
60
60
display : flex ;
61
- align-items : baseline ;
62
61
flex-direction : row ;
63
62
justify-content : space-between ;
64
63
align-items : center ;
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ export default {
48
48
div .select-container {
49
49
margin : 0.25rem auto ;
50
50
display : flex ;
51
- align-items : baseline ;
52
51
flex-direction : row ;
53
52
justify-content : space-between ;
54
53
align-items : center ;
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ export default {
86
86
/* Remove any attribute which has an undefined value before saving */
87
87
removeUndefinedValues (rawAppConfig ) {
88
88
const raw = rawAppConfig;
89
- const isEmpty = (value ) => (value === undefined || value === {} || value === [] );
89
+ const isEmpty = (value ) => (value === undefined );
90
90
Object .keys (raw).forEach (key => isEmpty (raw[key]) && delete raw[key]);
91
91
return raw;
92
92
},
You can’t perform that action at this time.
0 commit comments