We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da81b1b commit 95ceafaCopy full SHA for 95ceafa
1 file changed
src/webviewProvider.ts
@@ -126,18 +126,18 @@ export class WebviewProvider {
126
backendUrl: string;
127
}) {
128
try {
129
+ await this.treeProvider.updateApikey(config);
130
+ await this.passwordManager.storePassword(config.password);
131
+
132
// 分别更新每个配置项
133
await vscode.workspace
134
.getConfiguration("pawsql")
135
.update("email", config.email, true);
136
- await this.passwordManager.storePassword(config.password);
-
137
138
139
.update("backendUrl", config.backendUrl, true);
140
- await this.treeProvider.updateApikey(config);
141
await this.treeProvider.refresh();
142
// 配置保存成功反馈
143
vscode.window.showInformationMessage(
0 commit comments