Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/src/commit/0a2ac32dfc2f52ead68d17cc16dbdab39fde72aa/UI/Handlebars/Helpers/DateTime.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Readarr/UI/Handlebars/Helpers/DateTime.js

18 lines
439 B

'use strict';
define(
[
'handlebars',
'sugar'
], function (Handlebars) {
Handlebars.registerHelper('ShortDate', function (input) {
if (!input) {
return '';
}
var date = Date.create(input);
var result = '<span title="' + date.full() + '">' + date.short() + '</span>';
return new Handlebars.SafeString(result);
});
});