Skip to content

Commit

Permalink
fix #123
Browse files Browse the repository at this point in the history
  • Loading branch information
uNiversaI authored and uNiversaI committed Jan 12, 2015
1 parent c7c2d9c commit 3ef9987
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/js/app/common/genre.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Ext.ns('WIMM.video');
method: readMethod,
params: {
properties: ['genre'],
filter: { field: 'genre', operator: 'contains', value: oldGenre }
filter: { field: 'genre', operator: 'is', value: oldGenre }
},
id: 'WIMM'
};
Expand Down
2 changes: 1 addition & 1 deletion resources/js/app/movies/moviegenre.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ var movieGrid = new Ext.grid.GridPanel({
select: function(combo, record, index) {
storeMovie.load({ params: { filter: {
field: 'genre',
operator: 'contains',
operator: 'is',
value: record.data.label
} } });
}
Expand Down
2 changes: 1 addition & 1 deletion resources/js/app/movies/movieset.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Ext.ns('WIMM.video');
jsonrpc: '2.0',
method: 'VideoLibrary.GetMovies',
params: {
filter: { field: 'set', operator: 'contains', value: oldMovieSet }
filter: { field: 'set', operator: 'is', value: oldMovieSet }
},
id: 'WIMM'
};
Expand Down

0 comments on commit 3ef9987

Please sign in to comment.