feat(form): Make version field optional and set default value; update site domain placeholder for clarity

This commit is contained in:
web@ppanel
2025-02-23 12:45:43 +07:00
parent 4a002333d4
commit 42ba9e88ad
2 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -122,7 +122,7 @@ export default function Site() {
<TableCell className='text-right'>
<Textarea
className='h-52'
placeholder={t('siteDomainPlaceholder')}
placeholder={`${t('siteDomainPlaceholder')}\nexample.com\nwww.example.com`}
defaultValue={data?.host}
onBlur={(e) => {
updateConfig('host', e.target.value);