Skip to content
Snippets Groups Projects
Commit 99f3cd1c authored by Xiao Gui's avatar Xiao Gui
Browse files

chore: remove mat-list dom node

parent 8c4a5884
No related branches found
No related tags found
No related merge requests found
......@@ -340,16 +340,15 @@
<ng-container *ngIf="iavRegion.regionInOtherTemplates$ | async as regionInOtherTemplates">
<ng-template #exploreInOtherTmpl>
<mat-list class="action-list sm cursor-default">
<mat-card class="p-0 border-0 box-shadow-none mt-1 tb-1" *ngFor="let sameRegion of regionInOtherTemplates"
(click)="iavRegion.changeView(sameRegion)"
[matTooltip]="sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '')"
mat-ripple>
<small>
{{ sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '') }}
</small>
</mat-card>
</mat-list>
<mat-card *ngFor="let sameRegion of regionInOtherTemplates"
class="p-0 border-0 box-shadow-none mt-1 tb-1 cursor-default"
(click)="iavRegion.changeView(sameRegion)"
[matTooltip]="sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '')"
mat-ripple>
<small>
{{ sameRegion.template.name + (sameRegion.hemisphere ? (' - ' + sameRegion.hemisphere) : '') }}
</small>
</mat-card>
</ng-template>
<ng-container *ngTemplateOutlet="ngMatAccordionTmpl; context: {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment