Skip to content

Commit

Permalink
Merge pull request #11 from sudokey/master
Browse files Browse the repository at this point in the history
Fixed title hint for executor
  • Loading branch information
Rexagon committed Sep 7, 2023
2 parents 3d8a5d2 + 69336b0 commit 4417e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ExecutorAbiForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
Expand Down

0 comments on commit 4417e5d

Please sign in to comment.