We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359d240 commit 724748aCopy full SHA for 724748a
src/dispatch/static/dispatch/src/components/ParticipantSelect.vue
@@ -85,12 +85,14 @@ export default {
85
}
86
87
if (props.project) {
88
- if (Array.isArray(props.project) && props.project.length > 0) {
89
- filterOptions = {
90
- filters: {
91
- project: props.project,
92
- },
93
- ...filterOptions,
+ if (Array.isArray(props.project)) {
+ if (props.project.length > 0) {
+ filterOptions = {
+ filters: {
+ project: props.project,
+ },
94
+ ...filterOptions,
95
+ }
96
97
} else {
98
filterOptions = {
0 commit comments