Fixed: Disable delete button on used quality profiles

This commit is contained in:
Mark McDowall 2018-02-02 08:54:29 -08:00
parent 2f69a158b1
commit 9a61bb13e6
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ var view = Marionette.Layout.extend({
_updateDisableStatus : function() {
if (this._isQualityInUse()) {
this.ui.deleteButton.attr('disabled', 'disabled');
this.ui.deleteButton.addClass('disabled');
this.ui.deleteButton.attr('title', 'Can\'t delete a profile that is attached to a series.');
} else {