I am deploying an App to live, and it has a number of updates that are performed using a patch command:
Patch(
'[dbo].[TBL_JS_GOODS_IN_CONTROLSHEET]',
LookUp('[dbo].[TBL_JS_GOODS_IN_CONTROLSHEET]',ID = Selection.ID),
{ stBinLocation:lblSelectedProductState_1.Text,
UpdatedBy:User().FullName,
UpdatedOn: Now()
}
);
The connection is listed here in Data sources:

The connection to [dbo].[TBL_JS_GOODS_IN_CONTROLSHEET]' - when I hover here, shows that it is till pointing to the wrong connection.
How can I edit this?