Skip to content

Commit

Permalink
feat: During the wizard process, skip the step of choosing whether to…
Browse files Browse the repository at this point in the history
… enable reverse proxy.
  • Loading branch information
pengpeng committed Dec 4, 2024
1 parent 1b96129 commit 7a6ca63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/frontend/src/pages/step/Step2Page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ const updateLanguage = (value: 'en-US' | 'zh-CN') => {
const click = async (): Promise<boolean> => {
if (tokenStore.user.selfhosted) {
tokenStore.setStep(3);
tokenStore.wizard.network.enable_tunnel = true;
tokenStore.setStep(4);
} else {
tokenStore.wizard.network.enable_tunnel = false;
tokenStore.setStep(4);
Expand Down

0 comments on commit 7a6ca63

Please sign in to comment.