-
Notifications
You must be signed in to change notification settings - Fork 780
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
src/workbench/browser/src/app/shared/components/sync-api/sync-api.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<ng-contanier *ngIf="supportList.length; else empty"> | ||
<ng-container *ngIf="supportList.length; else empty"> | ||
<nz-radio-group [(ngModel)]="pushType"> | ||
<label *ngFor="let item of supportList" nz-radio-button [nzValue]="item.key">{{ item.title }}</label> | ||
</nz-radio-group> | ||
</ng-contanier> | ||
</ng-container> | ||
<ng-template #empty> | ||
<span class="text">该功能需要插件支持,请移步至插件广场下载</span> | ||
</ng-template> |