Compare commits

..

2 Commits

Author SHA1 Message Date
061d4844ad Merge pull request 'Remove 'Clear Path' button and translation keys' (#4) from feature/algorithm_pathfinding into main
All checks were successful
Build & Push Frontend A / docker (push) Successful in 46s
Reviewed-on: #4
2026-02-01 17:09:36 +01:00
1ce7927f14 Remove 'Clear Path' button and translation keys
Deleted the 'Clear Path' button from the pathfinding component and removed its associated translation entries from both English and German i18n files.
2026-02-01 17:08:55 +01:00
3 changed files with 0 additions and 3 deletions

View File

@@ -14,7 +14,6 @@
<button mat-raised-button color="accent" (click)="visualizeAStar()">{{ 'PATHFINDING.ASTAR' | translate }}</button>
<button mat-raised-button color="warn" (click)="resetBoard()">{{ 'PATHFINDING.RESET_BOARD' | translate }}</button>
<button mat-raised-button color="warn" (click)="clearBoard()">{{ 'PATHFINDING.CLEAR_BOARD' | translate }}</button>
<button mat-raised-button color="info" (click)="clearPath()">{{ 'PATHFINDING.CLEAR_PATH' | translate }}</button>
</div>
<div class="legend">

View File

@@ -303,7 +303,6 @@
"ASTAR": "A*",
"RESET_BOARD": "Board zurücksetzten",
"CLEAR_BOARD": "Board leeren",
"CLEAR_PATH": "Pfad löschen",
"VISITED": "Besucht",
"PATH": "Pfad",
"PATH_LENGTH": "Pfadlänge",

View File

@@ -303,7 +303,6 @@
"ASTAR": "A*",
"RESET_BOARD": "Reset Board",
"CLEAR_BOARD": "Clear Board",
"CLEAR_PATH": "Clear Path",
"VISITED": "Visited",
"PATH": "Path",
"PATH_LENGTH": "Path length",