Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[18.05] row ids that are all numeric become ints... #6639

Merged
merged 2 commits into from Aug 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -1072,7 +1072,8 @@ var FolderToolbarView = Backbone.View.extend({
$checkedValues.each(function() {
var row_id = $(this)
.closest("tr")
.data("id");
.data("id")
.toString();
if (row_id !== undefined) {
if (row_id.substring(0, 1) == "F") {
folder_ids.push(row_id);
Expand Down Expand Up @@ -1201,7 +1202,8 @@ var FolderToolbarView = Backbone.View.extend({
this.findCheckedRows().each(function() {
var row_id = $(this)
.closest("tr")
.data("id");
.data("id")
.toString();
if (row_id.substring(0, 1) == "F") {
folder_ids.push(row_id);
} else {
Expand Down
3 changes: 2 additions & 1 deletion static/scripts/admin.toolshed.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion static/scripts/bundled/admin.bundled.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion static/scripts/bundled/analysis.bundled.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion static/scripts/bundled/chart.bundled.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion static/scripts/bundled/extended.bundled.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion static/scripts/bundled/libs.bundled.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion static/scripts/bundled/login.bundled.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion static/scripts/galaxy.interactive_environments.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.