Port hijack frontend finished

This commit is contained in:
DomySh
2022-08-12 18:51:50 +00:00
parent a8330a9516
commit 354770279b
8 changed files with 137 additions and 95 deletions

View File

@@ -71,7 +71,7 @@ function AddNewService({ opened, onClose }:{ opened:boolean, onClose:()=>void })
<PortInput
fullWidth
label="Public Service port"
others={form.getInputProps('port')}
{...form.getInputProps('port')}
/>
{form.values.chosenInternalPort?<>
@@ -79,7 +79,7 @@ function AddNewService({ opened, onClose }:{ opened:boolean, onClose:()=>void })
<PortInput
fullWidth
label="Internal Proxy Port"
others={form.getInputProps('internalPort')}
{...form.getInputProps('internalPort')}
/>
<Space h="sm" />
</>:null}