Simple Managment webapp [LLM]
This commit is contained in:
@@ -45,15 +45,15 @@
|
||||
</div>
|
||||
}
|
||||
|
||||
<nz-card>
|
||||
<nz-table
|
||||
#messageTable
|
||||
[nzData]="messages()"
|
||||
[nzLoading]="loading()"
|
||||
[nzShowPagination]="false"
|
||||
[nzNoResult]="noResultTpl"
|
||||
nzSize="middle"
|
||||
>
|
||||
<nz-table
|
||||
#messageTable
|
||||
nzBordered
|
||||
[nzData]="messages()"
|
||||
[nzLoading]="loading()"
|
||||
[nzShowPagination]="false"
|
||||
[nzNoResult]="noResultTpl"
|
||||
nzSize="middle"
|
||||
>
|
||||
<ng-template #noResultTpl></ng-template>
|
||||
<thead>
|
||||
<tr>
|
||||
@@ -108,16 +108,15 @@
|
||||
</tr>
|
||||
}
|
||||
</tbody>
|
||||
</nz-table>
|
||||
</nz-table>
|
||||
|
||||
<div class="pagination-controls">
|
||||
<nz-pagination
|
||||
[nzPageIndex]="currentPage()"
|
||||
[nzPageSize]="pageSize"
|
||||
[nzTotal]="totalCount()"
|
||||
[nzDisabled]="loading()"
|
||||
(nzPageIndexChange)="goToPage($event)"
|
||||
></nz-pagination>
|
||||
</div>
|
||||
</nz-card>
|
||||
<div class="pagination-controls">
|
||||
<nz-pagination
|
||||
[nzPageIndex]="currentPage()"
|
||||
[nzPageSize]="pageSize"
|
||||
[nzTotal]="totalCount()"
|
||||
[nzDisabled]="loading()"
|
||||
(nzPageIndexChange)="goToPage($event)"
|
||||
></nz-pagination>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -9,7 +9,6 @@ import { NzTagModule } from 'ng-zorro-antd/tag';
|
||||
import { NzIconModule } from 'ng-zorro-antd/icon';
|
||||
import { NzEmptyModule } from 'ng-zorro-antd/empty';
|
||||
import { NzSpinModule } from 'ng-zorro-antd/spin';
|
||||
import { NzCardModule } from 'ng-zorro-antd/card';
|
||||
import { NzToolTipModule } from 'ng-zorro-antd/tooltip';
|
||||
import { NzPaginationModule } from 'ng-zorro-antd/pagination';
|
||||
import { ApiService } from '../../../core/services/api.service';
|
||||
@@ -30,7 +29,6 @@ import { RelativeTimePipe } from '../../../shared/pipes/relative-time.pipe';
|
||||
NzIconModule,
|
||||
NzEmptyModule,
|
||||
NzSpinModule,
|
||||
NzCardModule,
|
||||
NzToolTipModule,
|
||||
NzPaginationModule,
|
||||
RelativeTimePipe,
|
||||
|
||||
Reference in New Issue
Block a user