Skip to content

Commit

Permalink
wc - Fixed defect, optional chaining in annotations
Browse files Browse the repository at this point in the history
Signed-off-by: gpveronica <[email protected]>
  • Loading branch information
gpveronica committed Nov 9, 2023
1 parent a9bd78b commit dbdd5fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webcomponents/commons/grid-commons.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ export default class GridCommons {
title: annotation.title || "Custom Annotation",
field: "annotationSets",
formatter: annotationSets => formatter(annotationSets, annotation.variableSetId, annotation.variables),
halign: gridConfig.header.horizontalAlign,
halign: gridConfig.header?.horizontalAlign || "center",
visible: true,
excludeFromSettings: true,
// visible: this.gridCommons.isColumnVisible("annotations")
Expand Down

0 comments on commit dbdd5fe

Please sign in to comment.