Skip to content

Commit

Permalink
Correct call for diambiguation
Browse files Browse the repository at this point in the history
  • Loading branch information
patrikhellgren committed Dec 20, 2024
1 parent d1befec commit 2508afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion search-parts/src/components/DetailsListComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ export class DetailsListComponent extends React.Component<IDetailsListComponentP

if (this._templateContext.properties.useMicrosoftGraphToolkit && this.props.templateService.MgtCustomElementHelper.isDisambiguated) {
allStyles.forEach((style, index) => {
allStyles[index] = this.props.templateService.MgtCustomElementHelper.applyDisambiguatedMgtPrefixIfNeeded(style);
allStyles[index] = this.props.templateService.applyDisambiguatedMgtPrefixIfNeeded(style);
});
}

Expand Down

0 comments on commit 2508afa

Please sign in to comment.