Skip to content

Commit

Permalink
fix border right if keyresult is newly loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
Vakmeth committed Nov 20, 2023
1 parent 64d8262 commit ea96952
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export class ScoringComponent implements OnInit, AfterViewInit, OnChanges {
}

removeStyleClass() {
let classArray: string[] = ['score-red', 'score-green', 'score-yellow', 'score-stretch'];
let classArray: string[] = ['score-red', 'score-green', 'score-yellow', 'score-stretch', 'border-right'];
for (let classToRemove of classArray) {
this.commitElement?.nativeElement.classList.remove(classToRemove);
this.targetElement?.nativeElement.classList.remove(classToRemove);
Expand Down

0 comments on commit ea96952

Please sign in to comment.