File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -267,7 +267,7 @@ def run():
267267 if col != targetColumn and col != 'Cluster' and col != "":
268268 setResult(json.dumps({
269269 'type': 'heading',
270- 'key ': 'biasAnalysis.distribution.heading',
270+ 'headingKey ': 'biasAnalysis.distribution.heading',
271271 'params': {'variable': col}
272272 }))
273273
@@ -281,7 +281,7 @@ def run():
281281 if col != targetColumn and col != 'Cluster' and col != "" and col in features:
282282 setResult(json.dumps({
283283 'type': 'heading',
284- 'key ': 'biasAnalysis.distribution.heading',
284+ 'headingKey ': 'biasAnalysis.distribution.heading',
285285 'params': {'variable': col}
286286 }))
287287
Original file line number Diff line number Diff line change @@ -131,7 +131,10 @@ export default function ComponentMapper({
131131 className = "text-gray-800 font-semibold"
132132 >
133133 { resultItem . headingKey
134- ? t ( resultItem . headingKey )
134+ ? t (
135+ resultItem . headingKey ,
136+ resultItem . params
137+ )
135138 : resultItem . data }
136139 </ h5 >
137140 ) ;
Original file line number Diff line number Diff line change 1010 "error" : " Sorry, something went wrong." ,
1111 "loadingMessage" : " Setting up environment..." ,
1212 "mostBiasedCluster" : " Most biased\n cluster" ,
13- "cluster" : " Cluster" ,
13+ "cluster" : " Cluster {{value}} " ,
1414 "exportToPDF" : " Export to PDF" ,
1515 "exportToJSON" : " Export synthetic data to JSON" ,
1616 "downloadButton" : " Download" ,
You can’t perform that action at this time.
0 commit comments