Skip to content

Commit

Permalink
Fix foldmason limit
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Jan 17, 2025
1 parent b3b6318 commit 0e05030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/FoldMasonSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default {
},
computed: {
alignDisabled() {
return this.queries.length <= 1 || this.inSearch || this.queries.length < 5000;
return this.queries.length <= 1 || this.inSearch || this.queries.length >= 5000;
},
fileNameSet() {
return new Set(this.queries.map(f => f.name));
Expand Down

0 comments on commit 0e05030

Please sign in to comment.