diff --git a/src/workbench/browser/src/app/shared/components/setting/common/data-storage.component.ts b/src/workbench/browser/src/app/shared/components/setting/common/data-storage.component.ts index fac1d5ed7..f7ff29119 100644 --- a/src/workbench/browser/src/app/shared/components/setting/common/data-storage.component.ts +++ b/src/workbench/browser/src/app/shared/components/setting/common/data-storage.component.ts @@ -18,7 +18,7 @@ import { NzMessageService } from 'ng-zorro-antd/message';
Localhost: Store the data locally. You can only use the product on the current computer.
Remote Server: Store data on a remote server to facilitate cross device use of the product. - Learn more... + Learn more...
diff --git a/src/workbench/browser/src/app/shared/services/storage/http/lib/baseUrl.service.ts b/src/workbench/browser/src/app/shared/services/storage/http/lib/baseUrl.service.ts index 7254917be..9185e3b8a 100644 --- a/src/workbench/browser/src/app/shared/services/storage/http/lib/baseUrl.service.ts +++ b/src/workbench/browser/src/app/shared/services/storage/http/lib/baseUrl.service.ts @@ -1,13 +1,14 @@ -import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse } from "@angular/common/http"; -import { Injectable } from "@angular/core"; -import { filter, map, Observable } from "rxjs"; +import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse } from '@angular/common/http'; +import { Injectable } from '@angular/core'; +import { RemoteService } from 'eo/workbench/browser/src/app/shared/services/remote/remote.service'; +import { filter, map, Observable } from 'rxjs'; const protocolReg = new RegExp('^(http|https)://'); // implements StorageInterface @Injectable() -export class BaseUrlInterceptor implements HttpInterceptor { +export class BaseUrlInterceptor extends RemoteService implements HttpInterceptor { intercept(req: HttpRequest