ngModel
nzDefaultOpenValue
in date picker. NG-ZORRO/ng-zorro-antd#4331, we will fix it soon.
<nz-tabset nzLinkRouter nzLinkExact="false">
<nz-tab>
<a nz-tab-link routerLink="./" fragment="groups" >
{{'accounts:Группы безопасности' | i18next}}
</a>
<ng-template nz-tab>
<button nz-button nzType="default" (click)="bindGroup()">Добавить группу</button>
<button nz-button nzType="default" (click)="unbindGroup()">Удалить группу</button>
<br>
<adm-table #securityGroupsTableComponent [settings]="securityGroupsTable"></adm-table>
</ng-template>
</nz-tab>
<nz-tab>
<a nz-tab-link [routerLink]="['./']" fragment="endpoints">
{{'accounts:Точки доступа' | i18next}}
</a>
<ng-template nz-tab>
<button nz-button nzType="primary" (click)="bindEndpoints()">{{'accounts:Таблица.Добавить' | i18next }}</button>
<button nz-button nzType="default" (click)="unbindEndpoints()" [disabled]="!hasEndpointsSelectedRows">{{'accounts:Таблица.Удалить' | i18next }}</button><br>
<adm-table #endpointsTableComponent [settings]="endpointsTable"></adm-table>
</ng-template>
</nz-tab>