Showing
1 changed file
with
3 additions
and
2 deletions
@@ -54,10 +54,11 @@ | @@ -54,10 +54,11 @@ | ||
54 | field: FiledKey.WEBSITE, | 54 | field: FiledKey.WEBSITE, |
55 | label: handleDecode(t('routes.aboutSoftware.websiteLabel')), | 55 | label: handleDecode(t('routes.aboutSoftware.websiteLabel')), |
56 | render: (val: string) => { | 56 | render: (val: string) => { |
57 | + let joinWww = val.substring(0, 8) + 'www.' + val.substring(8); | ||
57 | return h( | 58 | return h( |
58 | 'span', | 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 | }, |