Skip to content

Commit 95977f6

Browse files
authored
Merge pull request #435 from MEDomics-UdeS/packagingTest
Fixed Duplicate key issue 'color'
2 parents 311e0de + c91de9c commit 95977f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

renderer/components/dbComponents/inputToolsDB/convertCategoricalColumnIntoNumericDB.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ const ConvertCategoricalColumnIntoNumericDB = ({ currentCollection }) => {
339339
sortable
340340
style={{
341341
// Red if categorical and NOT already encoded
342-
color: categoricalColumns.includes(col.field) ? "red" : "inherit",
342+
background: categoricalColumns.includes(col.field) ? "red" : "inherit",
343343
// Red if highlighted
344344
color: highlightedColumns.includes(col.field) ? "red" : "inherit"
345345
}}

0 commit comments

Comments
 (0)