Skip to content

Commit

Permalink
fix advanced search status (#4579)
Browse files Browse the repository at this point in the history
Co-authored-by: jygaulier <[email protected]>
  • Loading branch information
aynsix and jygaulier authored Jan 21, 2025
1 parent 13de474 commit 7b32ccd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Phraseanet-production-client/dist/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -69228,7 +69228,7 @@ var search = function search(services) {
_.each(_tmpStat, function (v, sbas_id) {
var status = [];
_.each(v, function (v, sb_index) {
if (v !== -1) {
if (!_.isUndefined(v) && v !== -1) {
// ignore both checked
status.push({
'index': sb_index,
Expand Down
2 changes: 1 addition & 1 deletion Phraseanet-production-client/dist/production.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -69228,7 +69228,7 @@ var search = function search(services) {
_.each(_tmpStat, function (v, sbas_id) {
var status = [];
_.each(v, function (v, sb_index) {
if (v !== -1) {
if (!_.isUndefined(v) && v !== -1) {
// ignore both checked
status.push({
'index': sb_index,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ const search = services => {
_.each(_tmpStat, function (v, sbas_id) {
var status = [];
_.each(v, function (v, sb_index) {
if (v !== -1) {
if (!_.isUndefined(v) && v !== -1) {
// ignore both checked
status.push({
'index': sb_index,
Expand Down

0 comments on commit 7b32ccd

Please sign in to comment.