Skip to content

Commit af17d82

Browse files
author
Martha King
committed
fix check
1 parent 0f95eae commit af17d82

File tree

1 file changed

+1
-1
lines changed
  • app/gui/src/project-view/components/visualizations/TableVisualization

1 file changed

+1
-1
lines changed

app/gui/src/project-view/components/visualizations/TableVisualization/tableVizUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export const formatText = (input: string, textFormatterSelected: TextFormatOptio
8585
: match
8686
}
8787
const newString = replaceReturns.replace(/[\s]/g, function (match: string) {
88-
const mapping = textFormatterSelected.value === 'full' ? fullMappings : partialMappings
88+
const mapping = textFormatterSelected === 'full' ? fullMappings : partialMappings
8989
return mapping[match as keyof typeof mapping] || renderOtherWhitespace(match)
9090
})
9191
return `<span > ${newString} <span>`

0 commit comments

Comments
 (0)