Skip to content

Commit

Permalink
fix(jaeger-search): set limit min input as 1
Browse files Browse the repository at this point in the history
dgurkaynak committed Jul 14, 2020
1 parent f75c32f commit eab688a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/trace-search/jaeger-search.ts
Original file line number Diff line number Diff line change
@@ -292,7 +292,7 @@ export class JaegerSearch {
limitContainer.appendChild(limitTitleContainer);
limitInput.classList.add('small');
limitInput.type = 'number';
limitInput.min = '0';
limitInput.min = '1';
limitInput.value = '100';
limitInput.required = true;
limitContainer.appendChild(limitInput);

0 comments on commit eab688a

Please sign in to comment.