Skip to content

Commit

Permalink
Bug fix the right table to match the left for new features from today
Browse files Browse the repository at this point in the history
  • Loading branch information
pickettd committed Nov 22, 2024
1 parent 5a6c1f1 commit 07eb870
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,18 @@ export default class StickySelectronMain extends LightningElement {
this.selectedTableFieldNames.length
) {
this.selectedTableFieldNames.forEach((fieldName) => {
const fieldLabel = fieldInfo.fieldLabels[fieldName];
const fieldLabel =
fieldInfo.fieldLabels[fieldName].label;
const fieldType = fieldInfo.fieldLabels[fieldName].type;
const fieldScale =
fieldInfo.fieldLabels[fieldName].scale;
if (fieldLabel) {
this.fieldsOnRight.push({
label: fieldLabel,
fieldname: fieldName,
isDynamic: true,
sfType: ''
sfType: fieldType,
sfScale: fieldScale
});
} else {
this.showError(
Expand Down

0 comments on commit 07eb870

Please sign in to comment.