diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/Config.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Config.tsx b/src/components/Config.tsx index a9ee04f..1c1ca02 100644 --- a/src/components/Config.tsx +++ b/src/components/Config.tsx @@ -67,6 +67,7 @@ const modeOptions = [ const tunStackOptions = [ ['gvisor', 'gVisor'], ['system', 'System'], + ['lwip', 'LWIP'], ]; const mapState = (s: State) => ({ @@ -308,7 +309,7 @@ function ConfigImpl({ <div className={s0.label}>TUN IP Stack</div> <Select options={tunStackOptions} - selected={configState['tun']?.stack} + selected={configState['tun']?.stack.toLowerCase()} onChange={(e) => handleChangeValue({ name: 'stack', value: e.target.value }) } |
