We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc1400 commit dc95c39Copy full SHA for dc95c39
src/Common/CodeMirror/utils.tsx
@@ -175,15 +175,15 @@ export const getScanLimit = (lhsValue: string, value: string) => {
175
return 5000
176
}
177
178
- if (numberOfLines > 5000 && numberOfLines <= 10000) {
+ if (numberOfLines <= 10000) {
179
return 10000
180
181
182
- if (numberOfLines > 10000 && numberOfLines <= 15000) {
+ if (numberOfLines <= 15000) {
183
return 15000
184
185
186
- if (numberOfLines > 15000 && numberOfLines <= 20000) {
+ if (numberOfLines <= 20000) {
187
return 20000
188
189
0 commit comments