Skip to content

Commit

Permalink
chore(confirm-delete): add help icon to link FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Jan 7, 2025
1 parent cb77673 commit 22960a2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/components/dialogs/confirm-delete-image.riot
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,18 @@
-->
<confirm-delete-image>
<material-popup opened="{ props.opened }" onClick="{ props.onClick }">
<div class="material-popup-title">These images will be deleted</div>
<div class="material-popup-title">
These images will be deleted
<material-button
color="inherit"
text-color="var(--accent-text)"
target="_blank"
waves-color="var(--hover-background)"
href="https://joxit.dev/docker-registry-ui/#:~:text=Why%20when%20I%20delete%20one%20tag,%20all%20tags%20with%20the%20same%20SHA%20are%20deleted%20"
icon
><i class="material-icons">help</i>
</material-button>
</div>
<div class="material-popup-content">
<ul>
<li each="{ image in displayImagesToDelete(props.toDelete, props.tags) }">{ image.name }:{ image.tag }</li>
Expand Down

0 comments on commit 22960a2

Please sign in to comment.