Skip to content

Commit

Permalink
fix objective release dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Oct 21, 2024
1 parent ee2d5b8 commit f297a6b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions frontend/src/app/components/objective/objective.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,9 @@ export class ObjectiveComponent implements OnInit {
}

getDraftMenuActions() {
console.log(this.isBacklogQuarter ? 'ObjectiveFormComponent' : 'ConfirmDialogComponent');
const relaseText = this.translate.instant('CONFIRMATION.RELEASE.TEXT');
const releaseText = this.translate.instant('CONFIRMATION.RELEASE.TEXT');
const releaseBacklogText = 'releaseBacklog';
const dialogText = this.isBacklogQuarter ? relaseText : releaseBacklogText;
const dialogText = this.isBacklogQuarter ? releaseText : releaseBacklogText;
let menuEntries = {
displayName: 'Objective veröffentlichen',
action: this.isBacklogQuarter ? 'releaseBacklog' : 'release',
Expand Down

0 comments on commit f297a6b

Please sign in to comment.