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 42fddab commit 765106fCopy full SHA for 765106f
src/components/prestaking/PrestakingValidatorPage.vue
@@ -109,8 +109,8 @@ export default defineComponent({
109
default: {
110
const list = validatorsList.value
111
.filter((validator) => {
112
- if (!searchValue.value) {
113
- // Only show pools by default
+ if (searchValue.value.length < 3) {
+ // Only show pools by default when search string is less than 3 characters
114
return 'label' in validator;
115
}
116
0 commit comments