fix: urls should be password fields

This commit is contained in:
Andras Bacsai 2023-10-13 09:36:37 +02:00
parent a6118f5daf
commit 38c6c1ee40
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@
label="Public Port" /> label="Public Port" />
<x-forms.checkbox instantSave id="database.is_public" label="Accessible over the internet" /> <x-forms.checkbox instantSave id="database.is_public" label="Accessible over the internet" />
</div> </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> </div>
</form> </form>
<div class="pb-16"> <div class="pb-16">

View File

@ -21,7 +21,7 @@
label="Public Port" /> label="Public Port" />
<x-forms.checkbox instantSave id="database.is_public" label="Accessible over the internet" /> <x-forms.checkbox instantSave id="database.is_public" label="Accessible over the internet" />
</div> </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> </div>
<x-forms.textarea label="Custom Redis Configuration" rows="10" id="database.redis_conf" /> <x-forms.textarea label="Custom Redis Configuration" rows="10" id="database.redis_conf" />
</form> </form>