fix(web): restore button in asset viewer ()

* fix(web): restore button added to trashed asset-view to restore single item

* fixed the asset-viewer menu to update upon restoration

* prettier formatting complete, testing passed

* chore: clean up

---------

Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
This commit is contained in:
Conner 2024-04-19 19:19:50 -06:00 committed by GitHub
parent 171b6bb0a6
commit 3abfe3c99e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 33 additions and 7 deletions
web/src/lib

View file

@ -5,7 +5,7 @@ export enum AssetAction {
UNFAVORITE = 'unfavorite',
TRASH = 'trash',
DELETE = 'delete',
// RESTORE = 'restore',
RESTORE = 'restore',
ADD = 'add',
}