Skip to content

Commit

Permalink
fix for the jump_to not working when ontology specifies a single lang…
Browse files Browse the repository at this point in the history
…uage
  • Loading branch information
mdorf committed Mar 7, 2025
1 parent 23d338f commit dc5c39c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default class extends Controller {
}

#isMultiple(arr) {
return Array.isArray(arr) && arr.length > 0;
return Array.isArray(arr) && arr.length > 1;
}

}

0 comments on commit dc5c39c

Please sign in to comment.