8000 Bug fix/ui moving documents by hkernbach · Pull Request #2981 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Bug fix/ui moving documents #2981

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

Merged
merged 5 commits into from
Aug 8, 2017
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ui: fixed a bug when moving multiple documents was not possible
  • Loading branch information
hkernbach committed Aug 8, 2017
commit cd1ba230fce5c576fabbf81fd1292e 8000 d8b7e420e9
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
devel
-----

* ui: fixed a bug when moving multiple documents was not possible

* ui: added bind parameters to slow query history view

* AQL CHAR_LENGTH(null) returns now 0. Since AQL TO_STRING(null) is '' (string of length 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@
confirmMoveSelectedDocs: function () {
var toMove = this.getSelectedDocs();
var self = this;
var toCollection = $('.modal-body').last().find('#move-documents-to').val();
var toCollection = $('#move-documents-to').val();

var callback = function () {
this.collection.getDocuments(this.getDocsCallback.bind(this));
Expand Down
0