From 69336b0d10b53256b2884b20c48ff9d3dac90c8b Mon Sep 17 00:00:00 2001 From: Pavel Ivanov Date: Thu, 7 Sep 2023 15:36:40 +0300 Subject: [PATCH] Fixed title hint for executor --- src/components/ExecutorAbiForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ExecutorAbiForm.vue b/src/components/ExecutorAbiForm.vue index 0aba4d4..77a9748 100644 --- a/src/components/ExecutorAbiForm.vue +++ b/src/components/ExecutorAbiForm.vue @@ -67,7 +67,7 @@ watch( } if (data && data.contract_name) { - const shortName = data.contract_name.split('/').pop().replace('.tsol', ''); + const shortName = data.contract_name.split('/').pop().replace(/\.(tsol|sol|fc|fif)$/, ''); if (shortName) { document.title = `${shortName} ${convertAddress(address)} | Everscale tools`;