Commit 231a79bf authored by mercury233's avatar mercury233

show description for mod

parent 9f59aef3
Pipeline #5202 passed with stages
in 3 minutes and 10 seconds
......@@ -162,7 +162,8 @@
<tbody>
<tr *ngFor="let mod of mods; let i = index">
<th scope="row">{{i + 1}}</th>
<td>{{mod.name}}</td>
<td title="{{mod.description}}">{{mod.name}}
<span *ngIf="mod.description" class="fa fa-info-circle" aria-hidden="true"></span></td>
<td *ngIf="mod.isReady()">
<button i18n type="button" [disabled]="mod.isInstalled()&&!appsService.allReady(mod)" (click)="uninstall(mod)" class="btn btn-danger btn-sm">卸载</button>
</td>
......
Markdown is supported
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