Skip to content

Commit

Permalink
fix: sort schemas when uploading data (apache#29610)
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Jul 16, 2024
1 parent c30ca53 commit b399525
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
dataType: 'json',
contentType: "application/json; charset=utf-8"
}).done(function (data) {
change_schema_field_in_formview(data ? data.schemas : [])
change_schema_field_in_formview(data ? data.schemas.sort() : [])
}).fail(function (error) {
var errorMsg = error.responseJSON.error;
alert("ERROR: " + errorMsg);
Expand Down

0 comments on commit b399525

Please sign in to comment.