Fix claim server setting persistence in AccountViewView

- Add user-specific settings save to onClickSaveApiServer() method
- Ensures API server changes persist for current user account
- Aligns with pattern used by other server settings (partner, push)
- Resolves issue where claim server changes weren't "sticking"
This commit is contained in:
Matthew Raymer
2025-07-27 08:10:32 +00:00
parent 591a740a1f
commit 1d32ceb57e

View File

@@ -1436,6 +1436,10 @@ export default class AccountViewView extends Vue {
apiServer: this.apiServerInput,
});
this.apiServer = this.apiServerInput;
// Add this line to save to user-specific settings
await this.$saveUserSettings(this.activeDid, {
apiServer: this.apiServer,
});
}
async onClickSavePartnerServer(): Promise<void> {