Showing
1 changed file
with
3 additions
and
2 deletions
... | ... | @@ -54,10 +54,11 @@ |
54 | 54 | field: FiledKey.WEBSITE, |
55 | 55 | label: handleDecode(t('routes.aboutSoftware.websiteLabel')), |
56 | 56 | render: (val: string) => { |
57 | + let joinWww = val.substring(0, 8) + 'www.' + val.substring(8); | |
57 | 58 | return h( |
58 | 59 | 'span', |
59 | - { class: 'text-blue-500 cursor-pointer', onClick: () => open(val) }, | |
60 | - val | |
60 | + { class: 'text-blue-500 cursor-pointer', onClick: () => open(joinWww) }, | |
61 | + joinWww | |
61 | 62 | ); |
62 | 63 | }, |
63 | 64 | }, | ... | ... |