Skip to content

Commit

Permalink
fix: lack icon
Browse files Browse the repository at this point in the history
  • Loading branch information
scarqin committed Dec 30, 2022
1 parent 8772974 commit 268ffcc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<TableProConfig>('table-pro-config', {
providedIn: 'root',
factory: () => TABLE_PRO_DEFUALT_CONFIG,
factory: () => TABLE_PRO_DEFUALT_CONFIG
});

0 comments on commit 268ffcc

Please sign in to comment.