Skip to content

Commit

Permalink
Merge pull request #188 from ConductionNL/feature/IBOC-114/inverted-logs
Browse files Browse the repository at this point in the history
reversed logs
  • Loading branch information
SudoThijn authored Feb 7, 2025
2 parents 598c470 + 1985cc2 commit ffa87f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Synchronization/SynchronizationDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ import { synchronizationStore, navigationStore, logStore } from '../../store/sto
</BTab>
<BTab title="Logs">
<div v-if="synchronizationStore.synchronizationLogs?.length">
<NcListItem v-for="(log, i) in synchronizationStore.synchronizationLogs"
<NcListItem v-for="(log, i) in [...synchronizationStore.synchronizationLogs].reverse()"
:key="log.id + i"
:name="log.message + (log.result?.objects?.found ? ` (found: ${log.result.objects.found})` : '')"
:bold="false"
Expand Down

0 comments on commit ffa87f3

Please sign in to comment.