Skip to content

Commit

Permalink
Merge pull request #265 from Sarveshgithub/dev
Browse files Browse the repository at this point in the history
Master Sync : Auto Generated PR
  • Loading branch information
Sarveshgithub authored Feb 12, 2024
2 parents df2ee0f + aa94db4 commit 8033c7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions force-app/main/default/lwc/lwcRelatedList/lwcRelatedList.js
Original file line number Diff line number Diff line change
Expand Up @@ -465,10 +465,10 @@ export default class LwcDatatable extends NavigationMixin(LightningElement) {
if (this.whereClause) {
where.push(this.whereClause);
if(this.whereClause.includes('recordId')){
this.whereClause.replace('recordId', this.recordId)
this.whereClause.replaceAll('recordId', this.recordId)
}
if(this.whereClause.includes('connectedUserId')){
this.whereClause.replace('connectedUserId', this.connectedUserId)
this.whereClause.replaceAll('connectedUserId', this.connectedUserId)
}
}
if (this.lookupFilterCondition) where.push(this.lookupFilterCondition);
Expand Down

0 comments on commit 8033c7f

Please sign in to comment.