We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fe84d8 commit d834402Copy full SHA for d834402
1 file changed
resources/js/vue/components/TestDetailsPage.vue
@@ -114,14 +114,17 @@
114
{{ measurement.value }}
115
</td>
116
</tr>
117
- <tr v-for="file in files">
+ <tr
118
+ v-for="(file, index) in files"
119
+ :key="index"
120
+ >
121
<th class="measurement">
122
{{ file.name }}
123
</th>
124
<td>
125
<a
126
class="cdash-link"
- :href="$baseURL + '/api/v1/testDetails.php?buildtestid=' + testId + '&fileid=' + file.fileid"
127
+ :href="$baseURL + '/api/v1/testDetails.php?buildtestid=' + testId + '&fileid=' + (index + 1)"
128
>
129
<img :src="$baseURL + '/img/package.png'">
130
</a>
0 commit comments