We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0dd52d commit b01a85cCopy full SHA for b01a85c
src/components/table/LogTable.vue
@@ -35,8 +35,8 @@
35
</td>
36
</tr>
37
38
- <LogTableRow v-for="row, rowNumber in sortedRows"
39
- :key="rowNumber"
+ <LogTableRow v-for="row in sortedRows"
+ :key="row.id"
40
:row="row"
41
@show-details="showDetailsForRow" />
42
</tbody>
src/interfaces/ILogEntry.ts
@@ -51,6 +51,8 @@ export interface IException {
51
* Common base format of a Nextcloud log entry
52
*/
53
interface IBaseLogEntry {
54
+ /** unique ID, appended to each iterator element */
55
+ id: string
56
/** Request ID: any log lines related to a single request have the same value */
57
reqId: string
58
/** Logged incident’s level */
0 commit comments