1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00

Add bindings for screen on load setting

This commit is contained in:
Andrew Kingston 2022-08-18 11:16:59 +01:00
parent 3f923d1a7f
commit 9475090f8f

View file

@ -502,7 +502,7 @@ const getRoleBindings = () => {
}
/**
* Gets all bindable properties exposed in a button actions flow up until
* Gets all bindable properties exposed in a button action flow up until
* the specified action ID, as well as context provided for the action
* setting as a whole by the component.
*/
@ -520,10 +520,7 @@ export const getButtonContextBindings = (
const component = findComponent(asset.props, componentId)
const settings = getComponentSettings(component?._component)
const eventSetting = settings.find(setting => setting.key === settingKey)
if (!eventSetting) {
return bindings
}
if (eventSetting.context?.length) {
if (eventSetting?.context?.length) {
eventSetting.context.forEach(contextEntry => {
bindings.push({
readableBinding: contextEntry.label,