Bug #86152
closedwrong column label in drawOverrideModal dialog
100%
Description
there is mismatch of the labeling in the DragUopload.js when the overwrite dialogue (drawOverrideModal) appears.
The labels for columns are specified as: $('<th/>').text(TYPO3.lang['file_upload.header.originalFile']),
$('<th/>').text(TYPO3.lang['file_upload.header.uploadedFile']),
but the ordering for the file details are later in the opposite order, first the uploaded and then the original.
askForOverride[i].uploaded.name + ' (' + (DragUploader.fileSizeAsString(askForOverride[i].uploaded.size)) + ')' +
'<br>' + moment(askForOverride[i].uploaded.lastModified, 'x').format('YYYY-MM-DD HH:mm')
),
$('<td />').html(
askForOverride[i].uploaded.name + ' (' +
(DragUploader.fileSizeAsString(askForOverride[i].original.size)) + ')' +
'<br>' + moment(askForOverride[i].original.mtime, 'X').format('YYYY-MM-DD HH:mm')
Seen in Typo3 8.7.*