Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin dropdown menu - red dot next to dropdown icon as notification about update #1700

Merged
merged 13 commits into from
Nov 17, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ <h4 class="card-title mb-0">
<a class="card-link" href="javascript:void(0)" aria-label="Plugin actions drop down menu" ngbDropdownToggle>
<i class="fas fa-fw fa-ellipsis-v"></i>
</a>
<span *ngIf="plugin.updateAvailable || plugin.betaUpdateAvailable"
class="position-absolute p-1 bg-danger rounded-circle"
style="right:0px; top:0px;">
</span>
<div ngbDropdownMenu aria-labelledby="Plugin actions drop down menu">
<button ngbDropdownItem *ngIf="plugin.publicPackage" (click)="$plugin.installPreviousVersion(plugin)">
<i class="fas fa-fw fa-fw fa-history"></i>
Expand Down
Loading