@@ -34,18 +34,6 @@ export function RecycleBinItemDetails({
3434 md:grid-cols-2
3535 ` }
3636 >
37- < div >
38- < dt className = "text-sm text-quanta-iron" >
39- { t ( 'cmsui.recyclebin.details.originalId' ) }
40- </ dt >
41- < dd > { item . id } </ dd >
42- </ div >
43- < div >
44- < dt className = "text-sm text-quanta-iron" >
45- { t ( 'cmsui.recyclebin.details.workflowState' ) }
46- </ dt >
47- < dd > { item . review_state } </ dd >
48- </ div >
4937 < div >
5038 < dt className = "text-sm text-quanta-iron" >
5139 { t ( 'cmsui.recyclebin.details.path' ) }
@@ -54,9 +42,9 @@ export function RecycleBinItemDetails({
5442 </ div >
5543 < div >
5644 < dt className = "text-sm text-quanta-iron" >
57- { t ( 'cmsui.recyclebin.details.parentPath ' ) }
45+ { t ( 'cmsui.recyclebin.details.workflowState ' ) }
5846 </ dt >
59- < dd > { item . parent_path } </ dd >
47+ < dd > { item . review_state } </ dd >
6048 </ div >
6149 < div >
6250 < dt className = "text-sm text-quanta-iron" >
@@ -70,15 +58,15 @@ export function RecycleBinItemDetails({
7058 </ dt >
7159 < dd > { item . deleted_by } </ dd >
7260 </ div >
73- < div >
74- < dt className = "text-sm text-quanta-iron" >
75- { t ( 'cmsui.recyclebin.details.containedItems' ) }
76- </ dt >
77- < dd > { item . items_total } </ dd >
78- </ div >
7961 </ dl >
80- < RecycleBinRestorePanel actionMessage = { actionMessage } />
81- < RecycleBinChildrenTable childrenItems = { item . items } />
62+ < RecycleBinRestorePanel
63+ actionMessage = { actionMessage }
64+ defaultTargetPath = { item . parent_path }
65+ />
66+ < RecycleBinChildrenTable
67+ childrenItems = { item . items }
68+ itemsTotal = { item . items_total }
69+ />
8270 </ section >
8371 ) ;
8472}
0 commit comments