We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0d978c commit 088f01fCopy full SHA for 088f01f
src/packages/frontend/project/websocket/api.ts
@@ -197,6 +197,13 @@ export class API {
197
no_cache = false,
198
compute_server_id?: number,
199
): Promise<Configuration> => {
200
+ if (compute_server_id == null) {
201
+ // TODO: this is home base configuration for now by default no matter what is
202
+ // selected in the explorer. Someday it might be for compute servers,
203
+ // but right now that info is just not used/known elsewhere in our code. So by
204
+ // default use home base!
205
+ compute_server_id = 0;
206
+ }
207
const api = this.getApi({ compute_server_id });
208
return await api.system.configuration(aspect, no_cache);
209
};
0 commit comments