Skip to content

Commit

Permalink
Merge pull request #6082 from OCHA-DAP/hotfix/hdx-connect-fields-not-…
Browse files Browse the repository at this point in the history
…showing-firefox

HDX Connect fields not showing initially in contribute flow (Firefox)
  • Loading branch information
danmihaila authored Jul 26, 2023
2 parents 820c569 + 8084b03 commit 5a55fd7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1118,9 +1118,10 @@ $(function(){

// These are already created fields in the DOM, but they are
// initially hidden, and are only shown for metadata-only datasets
selectFieldNames.show();
selectFileTypes.show();
selectNumOfRows.show();
// Make sure Firefox is showing the fields by setting the display attribute
selectFieldNames.show().css('display', 'block');
selectFileTypes.show().css('display', 'block');
selectNumOfRows.show().css('display', 'block');
req_type_notification.removeClass('hdx-invisible-element');
}
else{
Expand Down
2 changes: 1 addition & 1 deletion ckanext-hdx_theme/ckanext/hdx_theme/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
hdx_version = 'v1.72.2'
hdx_version = 'v1.72.3'

0 comments on commit 5a55fd7

Please sign in to comment.