Skip to main content

Hi,

I am calling a flow from a Global action.  When I launch the flow I cannot see the next button at the bottom unless I click to make the global action screen fullscreen.  This is an unecessary click, ideally I would like the Next (and aditional buttons on further flow screens) to display as intended.  Component code below:

 

<aura:component implements="flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,force:lightningQuickActionWithoutHeader" access="global" >

 

<aura:handler name="init" value="{!this}" action="{!c.init}" />

 

<lightning:flow aura:id="flowData" />

 

</aura:component>

 

Controller:

 

({

 

init : function (component) {

 

// Find the component whose aura:id is “flowData”

 

var flow = component.find("flowData");

 

// In that component, start your flow. Reference the flow’s Unique Name.

 

flow.startFlow("Flow_Test_No1");

 

},

 

})

 

Any help would be greatlt appreciated, screenshot attached of the missing button also.Cannot view next button when invoking flow global action

Cheers

1 件の回答
0/9000