diff options
author | Frederick Muriuki Muriithi | 2025-01-17 10:04:11 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-01-17 10:04:11 -0600 |
commit | e7ab5230c69bd3f37e0f6195387155506b7d6ee5 (patch) | |
tree | 0043d66df3417940fbcea802f5d42a32db567306 | |
parent | 2fad8089f93ae618b5465582a8a9b4aad29bf7de (diff) | |
download | gn-uploader-e7ab5230c69bd3f37e0f6195387155506b7d6ee5.tar.gz |
Ensure that the preview data does not overflow the preview elements.
-rw-r--r-- | uploader/templates/phenotypes/macro-display-preview-table.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uploader/templates/phenotypes/macro-display-preview-table.html b/uploader/templates/phenotypes/macro-display-preview-table.html index 7509158..f54c53e 100644 --- a/uploader/templates/phenotypes/macro-display-preview-table.html +++ b/uploader/templates/phenotypes/macro-display-preview-table.html @@ -2,8 +2,8 @@ <div class="card" style="max-width: 676px;"> <div class="card-body"> <h5 class="card-title">Phenotypes '{{filetype | title}}' File Preview</h5> - <div class="card-text"> - <table id="{{tableid}}" class="table table-condensed table-responsive" style="overflow: hidden;"> + <div class="card-text" style="overflow: scroll;"> + <table id="{{tableid}}" class="table table-condensed table-responsive"> <thead> <tr> </tr> |