Skip to content

Commit d33df71

Browse files
authored
Merge pull request #444 from ImagingDataCommons/sprint-15-gw
Sprint 15 gw
2 parents 6aab017 + 326ce4b commit d33df71

File tree

4 files changed

+382
-75
lines changed

4 files changed

+382
-75
lines changed

idc/views.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,10 @@ def explore_data_page(request):
235235
with_derived = (req.get('with_derived', "True").lower() == "true")
236236
collapse_on = req.get('collapse_on', 'SeriesInstanceUID')
237237
is_json = (req.get('is_json', "False").lower() == "true")
238+
uniques = json.loads(req.get('uniques', '[]'))
238239

239240
context = build_explorer_context(is_dicofdic, source, versions, filters, fields, order_docs, counts_only,
240-
with_related, with_derived, collapse_on, is_json)
241+
with_related, with_derived, collapse_on, is_json, uniques=uniques)
241242

242243
except Exception as e:
243244
logger.error("[ERROR] While attempting to load the search page:")

static/css/search.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,12 @@ tr {
303303
word-wrap: break-word; }
304304

305305

306+
#cases_table td, #cases_table_head th {
307+
width: 25%;
308+
word-wrap: break-word; }
309+
310+
311+
306312
#studies_table_head th, #studies_table td {
307313
word-break: break-word; }
308314
#studies_table_head th.project-name, th.case-id, th.study-id,

0 commit comments

Comments
 (0)