Skip to content

Commit

Permalink
💚 Fixes CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Oct 26, 2021
1 parent dde5b36 commit 016dfb1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/components/FormElements/Radio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ export default {
div.radio-container {
margin: 0.25rem auto;
display: flex;
align-items: baseline;
flex-direction: row;
justify-content: space-between;
align-items: center;
Expand Down
1 change: 0 additions & 1 deletion src/components/FormElements/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ export default {
div.select-container {
margin: 0.25rem auto;
display: flex;
align-items: baseline;
flex-direction: row;
justify-content: space-between;
align-items: center;
Expand Down
2 changes: 1 addition & 1 deletion src/components/InteractiveEditor/EditAppConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default {
/* Remove any attribute which has an undefined value before saving */
removeUndefinedValues(rawAppConfig) {
const raw = rawAppConfig;
const isEmpty = (value) => (value === undefined || value === {} || value === []);
const isEmpty = (value) => (value === undefined);
Object.keys(raw).forEach(key => isEmpty(raw[key]) && delete raw[key]);
return raw;
},
Expand Down

0 comments on commit 016dfb1

Please sign in to comment.