mirror of https://github.com/Radarr/Radarr
Allow Duplicate Preferred Words (#484)
Allows you to weigh certain words more heavily. ex. This, This, That = This > That
This commit is contained in:
parent
3276e3ec52
commit
16b2cc49d4
|
@ -18,6 +18,7 @@ var view = Marionette.ItemView.extend({
|
||||||
onRender : function() {
|
onRender : function() {
|
||||||
this.ui.preferred.tagsinput({
|
this.ui.preferred.tagsinput({
|
||||||
trimValue : true,
|
trimValue : true,
|
||||||
|
allowDuplicates: true,
|
||||||
tagClass : 'label label-success'
|
tagClass : 'label label-success'
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue