File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 3535 </td >
3636 </tr >
3737
38- <LogTableRow v-for =" row, rowNumber in sortedRows"
39- :key =" rowNumber "
38+ <LogTableRow v-for =" row in sortedRows"
39+ :key =" row.id "
4040 :row =" row"
4141 @show-details =" showDetailsForRow" />
4242 </tbody >
Original file line number Diff line number Diff line change @@ -102,6 +102,8 @@ export type IRawLogEntry = INextcloud14LogEntry | INextcloud22LogEntry
102102 * Fixed version of the log entry where the exception has its own field of type IException
103103 */
104104export interface ILogEntry extends Omit < INextcloud22LogEntry , 'exception' > {
105+ /** Unique ID, appended to each iterator element (see LogController#poll) */
106+ id : string
105107 /** Full exception with trace (if applicable) */
106108 exception ?: IException
107109}
You can’t perform that action at this time.
0 commit comments