Skip to content

Commit 721889b

Browse files
committed
fix: added table column selector
1 parent b16e679 commit 721889b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/pkg/api/data_access/vdb_withdrawals.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ func getWithdrawalRequestsDs(dashboardId t.VDBId, search string, isValidSearchWi
761761
searches = append(searches, goqu.I("v.pubkey").Eq(pubkey))
762762
}
763763
if isValidSearchIndexOrSlot {
764-
searches = append(searches, goqu.I("slot_processed").Eq(search), goqu.I("validatorindex").Eq(search))
764+
searches = append(searches, goqu.I("slot_processed").Eq(search), goqu.I("v.validatorindex").Eq(search))
765765
}
766766
if len(searches) > 0 {
767767
withdrawalRequestsDs = withdrawalRequestsDs.Where(goqu.Or(searches...))

0 commit comments

Comments
 (0)