Rename "IP Address" to "IP / Hostname"

This commit is contained in:
Owen Schwartz 2025-01-11 11:17:49 -05:00
parent c8c756df28
commit 832d7e5d6d
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD

View file

@ -351,7 +351,7 @@ export default function ReverseProxyTargets(props: {
},
{
accessorKey: "ip",
header: "IP Address",
header: "IP / Hostname",
cell: ({ row }) => (
<Input
defaultValue={row.original.ip}
@ -528,7 +528,7 @@ export default function ReverseProxyTargets(props: {
name="ip"
render={({ field }) => (
<FormItem>
<FormLabel>IP Address</FormLabel>
<FormLabel>IP / Hostname</FormLabel>
<FormControl>
<Input id="ip" {...field} />
</FormControl>