-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix various bugs #6
Conversation
@@ -46,7 +48,7 @@ module.exports = { | |||
} else if (obj.type === 'area') { | |||
return Object.keys(obj.options.widgets).flatMap(widget => { | |||
const { schema = [] } = self.apos.modules[`${widget}-widget`]; | |||
return schema.map(searchRelationships); | |||
return schema.flatMap(searchRelationships); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -76,7 +76,6 @@ export default { | |||
this.selectedFile = null; | |||
}, | |||
cancel () { | |||
this.modal.active = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
was slowing the modal closing 🤷
font-weight: 600; | ||
color: var(--a-base-3); | ||
margin-top: 20px; | ||
} | ||
|
||
.apos-export__settings-row { | ||
font-size: var(--a-type-large); | ||
font-size: var(--a-type-base); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixing 1 bug and 2 minor things.
see PR comments