Add icons to team drive download action buttons

This commit is contained in:
DianaXWiki 2025-10-06 12:19:01 +03:00
parent 7867125563
commit 24e8233c66

View File

@ -504,17 +504,18 @@ define([
});
};
var download = h('button.btn.btn-primary', Messages.download_mt_button);
var download = h('button.btn.btn-primary', [Icons.get('download'), Messages.download_mt_button]);
var completed = false;
var complete = function(h, err) {
if (completed) { return; }
completed = true;
$(progress).find('svg').empty().append(Icons.get('checked-box'));
$(cancel).text(Messages.filePicker_close).off('click').click(function() {
$(cancel).empty().append(Icons.get('close'), Messages.filePicker_close).off('click').click(function() {
_onCancel.forEach(function(h) { h(); });
});
$(download).click(h).appendTo(actions);
addErrors(err);
Lucide.createIcons();
};
var done = {};