Merge pull request #18252 from nextcloud/17/bugfix/noid/tooltip-hide-date

Hide the tooltip if the list row is rerendered
This commit is contained in:
Roeland Jago Douma 2019-12-05 20:47:03 +01:00 committed by GitHub
commit a6f9a0809c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2566,6 +2566,7 @@
* @return {Object} new row element
*/
updateRow: function($tr, fileInfo, options) {
$tr.find('[data-original-title]').tooltip('hide');
this.files.splice($tr.index(), 1);
$tr.remove();
options = _.extend({silent: true}, options);