fix: urls should be password fields
This commit is contained in:
parent
a6118f5daf
commit
38c6c1ee40
2 changed files with 2 additions and 2 deletions
|
|
@ -62,7 +62,7 @@
|
|||
label="Public Port" />
|
||||
<x-forms.checkbox instantSave id="database.is_public" label="Accessible over the internet" />
|
||||
</div>
|
||||
<x-forms.input label="Postgres URL" readonly wire:model="db_url" />
|
||||
<x-forms.input label="Postgres URL" type="password" readonly wire:model="db_url" />
|
||||
</div>
|
||||
</form>
|
||||
<div class="pb-16">
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@
|
|||
label="Public Port" />
|
||||
<x-forms.checkbox instantSave id="database.is_public" label="Accessible over the internet" />
|
||||
</div>
|
||||
<x-forms.input label="Redis URL" readonly wire:model="db_url" />
|
||||
<x-forms.input label="Redis URL" type="password" readonly wire:model="db_url" />
|
||||
</div>
|
||||
<x-forms.textarea label="Custom Redis Configuration" rows="10" id="database.redis_conf" />
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Reference in a new issue