mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 08:32:25 +01:00
use id for historical events key
This commit is contained in:
parent
56a8ac71fc
commit
26ef6a345b
2 changed files with 7 additions and 1 deletions
|
|
@ -11,7 +11,6 @@
|
||||||
{ value: 100, title: '100' },
|
{ value: 100, title: '100' },
|
||||||
]"
|
]"
|
||||||
:headers="headers"
|
:headers="headers"
|
||||||
item-value="timestamp"
|
|
||||||
fixed-header
|
fixed-header
|
||||||
fixed-footer
|
fixed-footer
|
||||||
multi-sort
|
multi-sort
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ import { http, HttpResponse } from 'msw'
|
||||||
import logoUrl from '@/assets/logo.svg'
|
import logoUrl from '@/assets/logo.svg'
|
||||||
|
|
||||||
export const historyBookImported = {
|
export const historyBookImported = {
|
||||||
|
id: 'H1',
|
||||||
type: 'BookImported',
|
type: 'BookImported',
|
||||||
timestamp: new Date('2025-08-07T09:36:22.596'),
|
timestamp: new Date('2025-08-07T09:36:22.596'),
|
||||||
bookId: 'B5',
|
bookId: 'B5',
|
||||||
|
|
@ -17,6 +18,7 @@ export const historyBookImported = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const historySeriesFolderDeleted = {
|
export const historySeriesFolderDeleted = {
|
||||||
|
id: 'H2',
|
||||||
type: 'SeriesFolderDeleted',
|
type: 'SeriesFolderDeleted',
|
||||||
timestamp: new Date('2025-08-05T21:33:56.452'),
|
timestamp: new Date('2025-08-05T21:33:56.452'),
|
||||||
seriesId: '404',
|
seriesId: '404',
|
||||||
|
|
@ -27,6 +29,7 @@ export const historySeriesFolderDeleted = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const historyBookFileDeleted = {
|
export const historyBookFileDeleted = {
|
||||||
|
id: 'H3',
|
||||||
type: 'BookFileDeleted',
|
type: 'BookFileDeleted',
|
||||||
timestamp: new Date('2025-08-05T21:33:56.445'),
|
timestamp: new Date('2025-08-05T21:33:56.445'),
|
||||||
bookId: '404',
|
bookId: '404',
|
||||||
|
|
@ -38,6 +41,7 @@ export const historyBookFileDeleted = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const historyBookImportedForUpgrade = {
|
export const historyBookImportedForUpgrade = {
|
||||||
|
id: 'H4',
|
||||||
type: 'BookImported',
|
type: 'BookImported',
|
||||||
timestamp: new Date('2025-07-28T17:52:14.126'),
|
timestamp: new Date('2025-07-28T17:52:14.126'),
|
||||||
bookId: 'B15',
|
bookId: 'B15',
|
||||||
|
|
@ -50,6 +54,7 @@ export const historyBookImportedForUpgrade = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const historyBookFileDeletedForUpgrade = {
|
export const historyBookFileDeletedForUpgrade = {
|
||||||
|
id: 'H5',
|
||||||
type: 'BookFileDeleted',
|
type: 'BookFileDeleted',
|
||||||
timestamp: new Date('2025-07-28T17:52:14.016'),
|
timestamp: new Date('2025-07-28T17:52:14.016'),
|
||||||
bookId: 'b14',
|
bookId: 'b14',
|
||||||
|
|
@ -61,6 +66,7 @@ export const historyBookFileDeletedForUpgrade = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const historyDuplicatePageDeleted = {
|
export const historyDuplicatePageDeleted = {
|
||||||
|
id: 'H6',
|
||||||
type: 'DuplicatePageDeleted',
|
type: 'DuplicatePageDeleted',
|
||||||
timestamp: new Date('2025-07-26T21:33:18.809'),
|
timestamp: new Date('2025-07-26T21:33:18.809'),
|
||||||
bookId: 'B5',
|
bookId: 'B5',
|
||||||
|
|
@ -76,6 +82,7 @@ export const historyDuplicatePageDeleted = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const historyBookConverted = {
|
export const historyBookConverted = {
|
||||||
|
id: 'H7',
|
||||||
type: 'BookConverted',
|
type: 'BookConverted',
|
||||||
timestamp: new Date('2025-07-07T17:33:39.545'),
|
timestamp: new Date('2025-07-07T17:33:39.545'),
|
||||||
bookId: 'B25',
|
bookId: 'B25',
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue