Skip to content

Commit

Permalink
fix: Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
bellisk committed Feb 17, 2025
1 parent 091bca0 commit 1d9b945
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ckan.module('ogdch_relations_add_rows', function ($) {
firstHiddenRows.addClass('ogdch-show-row');
var firstHiddenLabel = $('.relation-label.ogdch-hide-row')
.slice(0, 1);
firstHiddenLabel.addClass('ogdch-show-row')
firstHiddenLabel.addClass('ogdch-show-row');
$('.ogdch-show-row').removeClass('ogdch-hide-row');
$( "#field-relation-title-1" ).focus();
});
Expand Down

0 comments on commit 1d9b945

Please sign in to comment.