mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
started Inline edit of quality for episode file
This commit is contained in:
@@ -1,12 +1,17 @@
|
||||
'use strict';
|
||||
define(
|
||||
[
|
||||
'Cells/TemplatedCell'
|
||||
], function (TemplatedCell) {
|
||||
'Cells/TemplatedCell',
|
||||
'Cells/Edit/QualityCellEditor'
|
||||
], function (TemplatedCell, QualityCellEditor) {
|
||||
return TemplatedCell.extend({
|
||||
|
||||
className: 'quality-cell',
|
||||
template : 'Cells/QualityCellTemplate'
|
||||
template : 'Cells/QualityCellTemplate',
|
||||
editor : QualityCellEditor,
|
||||
|
||||
_startEditing: function (model, column, cell, editor) {
|
||||
editor._setOptions({ cell: cell });
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user