Skip to content

Commit

Permalink
Add labels
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippMDoerner committed Dec 12, 2024
1 parent ce59c9b commit a717ddd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/design/organisms/graph/graph.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
[kind]="'SECONDARY'"
[icon]="'plus'"
[size]="'SMALL'"
aria-label="'zoom in to graph'"
(click)="onZoomButtonClick(1)"
></button>
<input
#zoomControl
type="range"
aria-label="'Zoom level of graph'"
[min]="settings.minZoom"
[max]="settings.maxZoom"
[value]="(zoomLevel$ | async) ?? settings.minZoom"
Expand All @@ -25,6 +27,7 @@
[kind]="'SECONDARY'"
[icon]="'minus'"
[size]="'SMALL'"
aria-label="'zoom out of graph'"
(click)="onZoomButtonClick(-1)"
></button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
btn
title="Create Image"
class="mx-2"
aria-label="'Create Image'"
[kind]="'PRIMARY'"
[size]="'SMALL'"
[icon]="'plus-square'"
Expand All @@ -39,6 +40,7 @@
@if (images().length > 0 && canUpdate()) {
<button
btn
aria-label="'Update Image'"
title="Update Image"
class="mx-2"
[kind]="'SECONDARY'"
Expand All @@ -52,6 +54,7 @@
@if (images().length > 1 && canDelete()) {
<button
btn
aria-label="'Delete Image'"
title="Delete Image"
class="mx-2"
[kind]="'DANGER'"
Expand Down

0 comments on commit a717ddd

Please sign in to comment.