Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/154a6b39be035a7b9b73b202d3719245ab575d5e/UI/Cells/QualityCell.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/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
});
});