mirror of
https://github.com/hiddify/hiddify-next.git
synced 2026-07-16 21:07:03 +08:00
Add experimental flag to new config options
This commit is contained in:
parent
800efe6b43
commit
85abd7e9e3
@ -86,7 +86,7 @@ class ConfigOptionsPage extends HookConsumerWidget {
|
||||
const SettingsDivider(),
|
||||
SettingsSection(t.settings.config.section.route),
|
||||
SwitchListTile(
|
||||
title: Text(t.settings.config.bypassLan),
|
||||
title: Text(experimental(t.settings.config.bypassLan)),
|
||||
value: options.bypassLan,
|
||||
onChanged: (value) async =>
|
||||
changeOption(ConfigOptionPatch(bypassLan: value)),
|
||||
@ -258,7 +258,9 @@ class ConfigOptionsPage extends HookConsumerWidget {
|
||||
},
|
||||
),
|
||||
SwitchListTile(
|
||||
title: Text(t.settings.config.allowConnectionFromLan),
|
||||
title: Text(
|
||||
experimental(t.settings.config.allowConnectionFromLan),
|
||||
),
|
||||
value: options.allowConnectionFromLan,
|
||||
onChanged: (value) => changeOption(
|
||||
ConfigOptionPatch(allowConnectionFromLan: value),
|
||||
|
||||
2
libcore
2
libcore
@ -1 +1 @@
|
||||
Subproject commit 540c736cc1857099da7d05cb2d7398a9d06e7f75
|
||||
Subproject commit 29c6413bcee33971e3d888dc853face2246e8a7f
|
||||
Loading…
Reference in New Issue
Block a user