Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/signal-filters
Browse files Browse the repository at this point in the history
  • Loading branch information
wssheldon authored Dec 19, 2023
2 parents bb75307 + 724748a commit c854cc2
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,14 @@ export default {
}
if (props.project) {
if (Array.isArray(props.project) && props.project.length > 0) {
filterOptions = {
filters: {
project: props.project,
},
...filterOptions,
if (Array.isArray(props.project)) {
if (props.project.length > 0) {
filterOptions = {
filters: {
project: props.project,
},
...filterOptions,
}
}
} else {
filterOptions = {
Expand Down

0 comments on commit c854cc2

Please sign in to comment.