diff --git a/src/workbench/browser/src/app/core/services/web/web.service.ts b/src/workbench/browser/src/app/core/services/web/web.service.ts index 7aaf013ba..219cb3c5c 100644 --- a/src/workbench/browser/src/app/core/services/web/web.service.ts +++ b/src/workbench/browser/src/app/core/services/web/web.service.ts @@ -66,7 +66,7 @@ export class WebService { } private getClientResource() { - fetch('https://api.github.com/repos/eolinker/eoapi/releases') + fetch('https://api.github.com/repos/eolinker/postcat/releases') .then(response => response.json()) .then((data = []) => { [...this.resourceInfo] diff --git a/src/workbench/browser/src/app/modules/eo-ui/table-pro/table-pro.token.ts b/src/workbench/browser/src/app/modules/eo-ui/table-pro/table-pro.token.ts index 605d11bcb..33ed9d53a 100644 --- a/src/workbench/browser/src/app/modules/eo-ui/table-pro/table-pro.token.ts +++ b/src/workbench/browser/src/app/modules/eo-ui/table-pro/table-pro.token.ts @@ -24,19 +24,19 @@ export const TABLE_PRO_DEFUALT_CONFIG: TableProConfig = { fullScreenTitle: $localize`Full Screen`, columnVisibleTitle: $localize`Column Visible`, columnVisibleIcon: 'view-list-781pg17c', - btnAddRowIcon: 'plus', + btnAddRowIcon: 'add', btnAddRowTitle: $localize`Add Row`, - btnAddChildRowIcon: 'plus', + btnAddChildRowIcon: 'add', btnAddChildRowTitle: $localize`Add Child Row`, - btnInsertRowIcon: 'arrow-down', + btnInsertRowIcon: 'down-small', btnInsertRowTitle: $localize`Add Row Down`, btnEditRowIcon: 'edit', btnEditRowTitle: $localize`Edit`, btnDeleteRowIcon: 'delete', btnDeleteRowTitle: $localize`Delete`, - btnDeleteRowConfirmTitle: $localize`Are you sure you want to delete?`, + btnDeleteRowConfirmTitle: $localize`Are you sure you want to delete?` }; export const TABLE_PRO_CONFIG = new InjectionToken('table-pro-config', { providedIn: 'root', - factory: () => TABLE_PRO_DEFUALT_CONFIG, + factory: () => TABLE_PRO_DEFUALT_CONFIG });