Noob here. So a copied an app and modified it to fit our needs it has the following issue:
In the app there are a few dropdowns, which values are sourced from SharePoint Lists, where the last dropdown (Job) options cascade from the selection of the first dropdown (Client).
So I populate the dropdowns, and other text entries. See below:

When I select the new row button the last dropdown select disappears. See below:

For the data section of the (Job) dropdown I have the following:

And for the new grouping this is the On Select Code:
Select(Parent);
Patch(
newTimeEntry,
ThisItem,
{
Employee: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & currentUser.Email,
Department: "",
DisplayName: currentUser.FullName,
Email: currentUser.Email,
JobTitle: "",
Picture: ""
},
Client: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: cbClient.Selected.ID,
Value: cbClient.Selected.Title
},
Service: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: cbService.Selected.ID,
Value: cbService.Selected.Title
},
Job: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
Id: cbJob.Selected.ID,
Value: cbJob.Selected.Title
},
Mon: Value(tbMon.Text),
Tues: Value(tbTues.Text),
Weds: Value(tbWed.Text),
Thurs: Value(tbThurs.Text),
Fri: Value(tbFri.Text),
Sat: Value(tbSat.Text),
Sun: Value(tbSun.Text),
Comments: tbComments.Text
}
);
Collect(
newTimeEntry,
{
Employee: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & currentUser.Email,
Department: "",
DisplayName: currentUser.FullName,
Email: currentUser.Email,
JobTitle: "",
Picture: ""
},
Client:Blank(),
Service:Blank(),
Job:Blank(),
Mon: 0,
Tues: 0,
Weds: 0,
Thurs: 0,
Fri: 0,
Sat: 0,
Sun: 0,
Comments: ""
})
Any help would be appreciated. Thanks!