Skip to content

Commit

Permalink
feat: add import
Browse files Browse the repository at this point in the history
  • Loading branch information
Angular2Guy committed Feb 15, 2024
1 parent 8166820 commit b044e4d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
<div class="toolbar-content">
<div i18n="@@tableSearchHeading">Table Search</div>
<div class="example-fill-remaining-space"></div>
<div>
<button mat-flat-button color="primary" (click)="importData()" i18n="@@tableSearchImportData">
Import Data
</button>
</div>
<div>
<button mat-flat-button color="primary" (click)="showList()" i18n="@@list">
List
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ export class TableSearchComponent {
});
}

protected importData(): void {
console.log('importData');
}

protected showList(): void {
this.router.navigate(['/doclist']);
}
Expand Down

0 comments on commit b044e4d

Please sign in to comment.