Skip to content

Commit

Permalink
fix: fix wrong order of text guide
Browse files Browse the repository at this point in the history
  • Loading branch information
andy23512 committed May 6, 2024
1 parent 041a5b5 commit e4ffbb4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/components/layout/layout.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ export class LayoutComponent {

readonly highlightPositionCodesInText = computed(() => {
const highlightPositionCodes = this.highlightPositionCodes();
return highlightPositionCodes.map(humanizePositionCode).join(' + ');
return [...highlightPositionCodes]
.reverse()
.map(humanizePositionCode)
.join(' + ');
});

readonly positionCodeLayout = POSITION_CODE_LAYOUT;
Expand Down

0 comments on commit e4ffbb4

Please sign in to comment.