removes unnecssary cursor pointer from user email
This commit is contained in:
parent
2ed101888d
commit
99f780fa4c
|
@ -19,6 +19,7 @@ import { BaseComponent } from '@common/base/base.component';
|
|||
import * as FileSaver from 'file-saver';
|
||||
import { MatomoService } from '@app/core/services/matomo/matomo-service';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import { MatTableDataSource } from '@angular/material';
|
||||
|
||||
export class UsersDataSource extends DataSource<UserListingModel> {
|
||||
|
||||
|
@ -33,7 +34,6 @@ export class UsersDataSource extends DataSource<UserListingModel> {
|
|||
private _criteria: UserCriteriaComponent
|
||||
) {
|
||||
super();
|
||||
|
||||
//this._paginator.page.pipe(takeUntil(this._destroyed)).subscribe((pageEvent: PageEvent) => {
|
||||
// this.store.dispatch(new LoadPhotosRequestAction(pageEvent.pageIndex, pageEvent.pageSize))
|
||||
//})
|
||||
|
@ -90,15 +90,6 @@ export class UsersDataSource extends DataSource<UserListingModel> {
|
|||
disconnect() {
|
||||
// No-op
|
||||
}
|
||||
|
||||
// getSort(): MatSort {
|
||||
// return this._sort;
|
||||
// }
|
||||
// setSort(sort: MatSort) {
|
||||
// console.log(this._sort);
|
||||
// console.log(sort);
|
||||
// this._sort = sort;
|
||||
// }
|
||||
}
|
||||
|
||||
@Component({
|
||||
|
@ -142,9 +133,6 @@ export class UserListingComponent extends BaseComponent implements OnInit, After
|
|||
this.criteria.setCriteria(this.getDefaultCriteria());
|
||||
this.criteria.controlModified();
|
||||
});
|
||||
// if (this.dataSource) {
|
||||
// this.dataSource.setSort(this.sort);
|
||||
// }
|
||||
}
|
||||
|
||||
refresh() {
|
||||
|
|
|
@ -168,7 +168,7 @@
|
|||
}
|
||||
|
||||
.mail-text {
|
||||
cursor: pointer;
|
||||
// cursor: pointer;
|
||||
line-height: 2;
|
||||
letter-spacing: 0.15px;
|
||||
color: #212121;
|
||||
|
|
Loading…
Reference in New Issue