Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/f32cbbb224750b16c4b59d9a5f524c77c5270555/UI/Cells/QualityCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/UI/Cells/QualityCell.js

14 lines
342 B

'use strict';
define(
[
'Cells/TemplatedCell',
'Cells/Edit/QualityCellEditor'
], function (TemplatedCell, QualityCellEditor) {
return TemplatedCell.extend({
className: 'quality-cell',
template : 'Cells/QualityCellTemplate',
editor : QualityCellEditor
});
});