Skip to content

Commit 765106f

Browse files
committed
Prestaking: search min char is now 3
1 parent 42fddab commit 765106f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/prestaking/PrestakingValidatorPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ export default defineComponent({
109109
default: {
110110
const list = validatorsList.value
111111
.filter((validator) => {
112-
if (!searchValue.value) {
113-
// Only show pools by default
112+
if (searchValue.value.length < 3) {
113+
// Only show pools by default when search string is less than 3 characters
114114
return 'label' in validator;
115115
}
116116

0 commit comments

Comments
 (0)