Hello,
when i import the PowerApps in Teams some there is a strange behavior.
- Sometime the send-button won´t trigger a PowerAutomate-Flow:
SubmitForm('Form-Approval');
Notify(
"Bitte Teams-Genehmigung bearbeiten.",
NotificationType.Success,
10000
);
Patch(
'ni-PA-Stellenbesetzung',
ThisItem,
{
Status: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Value: "3. Anfrage an VWL: in Bearbeitung"
}
}
);
Patch(
'ni-PA-Stellenbesetzung',
LookUp(
'ni-PA-Stellenbesetzung',
ID = ThisItem.ID
),
{Ausschreibungsmedium2: DataCardValue8.SelectedItems}
);
'ni-PA-Stellenbesetzung-approval1-1'.Run('Form-Approval'.LastSubmit.ID);
Set(
varItem,
Blank();
);
Navigate(
'Screen-Home',
ScreenTransition.Fade
);
- Or sometimes the User is not able to edit the Richttext in a datacard. The User has to reload the app, or push a button (it dosn´t matter what button) an then he is able to edit the richttext-field.
This happens only in the Teams-enviroment.
If I open the App in the browser, everything is working fine.
So how to handle this? The code is correct, no errors.
Thank you,
Kind regards,
ni_dk