chore(react/dialog): improve recent changes

This commit is contained in:
Elian Doran
2025-08-07 22:31:51 +03:00
parent c0d7278827
commit bd6c690160
4 changed files with 46 additions and 21 deletions

View File

@@ -46,9 +46,16 @@ export interface RevisionPojo {
contentLength?: number;
}
export interface RecentChangesRow {
export interface RecentChangeRow {
noteId: string;
current_isDeleted: boolean;
current_deleteId: string;
current_title: string;
current_isProtected: boolean;
title: string;
utcDate: string;
date: string;
canBeUndeleted?: boolean;
}
export interface BulkActionAffectedNotes {