From 1ff658bf1a4d4a94c718ebe26c993392d4d3822c Mon Sep 17 00:00:00 2001 From: Zephyruso <176294927+Zephyruso@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:00:53 +0800 Subject: [PATCH] fix: rulePayload filter --- src/store/connections.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/store/connections.ts b/src/store/connections.ts index e6a2054a..28757438 100644 --- a/src/store/connections.ts +++ b/src/store/connections.ts @@ -151,6 +151,7 @@ export const renderConnections = computed(() => { conn.metadata.network, conn.chains.join(''), conn.rule, + conn.rulePayload, ].some((i) => i?.includes(connectionFilter.value)) }