Skip to content

Commit 14c0876

Browse files
committed
User experience improvements
1 parent 7cfa279 commit 14c0876

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

ricgraph_explorer/ricgraph_explorer.py

-5
Original file line numberDiff line numberDiff line change
@@ -1843,11 +1843,8 @@ def get_overlap_in_source_systems(name: str = '', category: str = '', value: str
18431843
html += '">'
18441844
html += str(recs_from_one_source[system])
18451845
html += '</a>'
1846-
# html += ' (' + str(round(100 * recs_from_one_source[system]/nr_recs_from_one_source)) + '%)'
18471846
html += ' (' + str(round(100 * recs_from_one_source[system]/nr_recs_from_one_source))
1848-
# html += '% of ' + str(nr_recs_from_one_source) + ' records from one source)'
18491847
html += '% of ' + str(nr_recs_from_one_source) + ' records are only in ' + system + ')'
1850-
#html += '</a>'
18511848
html += '</td>'
18521849
else:
18531850
html += '<td>0</td>'
@@ -1862,10 +1859,8 @@ def get_overlap_in_source_systems(name: str = '', category: str = '', value: str
18621859
html += '">'
18631860
html += str(recs_from_multiple_sources[system])
18641861
html += '</a>'
1865-
# html += ' (' + str(round(100 * recs_from_multiple_sources[system]/nr_recs_from_multiple_sources)) + '%)'
18661862
html += ' (' + str(round(100 * recs_from_multiple_sources[system]/nr_recs_from_multiple_sources))
18671863
html += '% of ' + str(nr_recs_from_multiple_sources) + ' records are in multiple sources)'
1868-
#html += '</a>'
18691864
html += '</td>'
18701865
else:
18711866
html += '<td>0</td>'

0 commit comments

Comments
 (0)