Skip to content

Commit 2a9b72d

Browse files
authored
Display R rather than P to index recommendations
1 parent e8690b9 commit 2a9b72d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/entities/PowerGrid/CAB/Assistant.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<template #default="{ recommendation, index }">
2222
<div class="flex">
2323
<main>
24-
<h2>P{{ index }}: {{ recommendation.title }}</h2>
24+
<h2>R{{ index }}: {{ recommendation.title }}</h2>
2525
</main>
2626
</div>
2727
</template>
@@ -38,7 +38,7 @@
3838
v-for="(recommendation, index) of recommendations"
3939
:key="recommendation.title"
4040
:class="{ active: selected?.title === recommendation.title }">
41-
P{{ index }}
41+
R{{ index }}
4242
</th>
4343
</tr>
4444
</thead>

0 commit comments

Comments
 (0)