diff --git a/module/doc/js/browsetemplate.ui.js b/module/doc/js/browsetemplate.ui.js index 955628d9ed..353e708737 100644 --- a/module/doc/js/browsetemplate.ui.js +++ b/module/doc/js/browsetemplate.ui.js @@ -11,6 +11,8 @@ function getTableOptions(options, info) { const lang = getDocAppLang(); + options.data.sort((a, b) => a.addedDate > b.addedDate ? -1 : 1); + templateCols = []; templateCols.push(options.cols.find(col => col.name === 'rawID'));