@@ -6398,6 +6398,10 @@ private function render_worktree_cleanup_eligible_drain_result( array $result, a
63986398 'metric ' => 'processed ' ,
63996399 'value ' => (int ) ( $ summary ['processed ' ] ?? 0 ),
64006400 ),
6401+ array (
6402+ 'metric ' => 'planned ' ,
6403+ 'value ' => (int ) ( $ summary ['planned ' ] ?? 0 ),
6404+ ),
64016405 array (
64026406 'metric ' => 'would_remove ' ,
64036407 'value ' => (int ) ( $ summary ['would_remove ' ] ?? 0 ),
@@ -6437,6 +6441,7 @@ private function render_worktree_cleanup_eligible_drain_result( array $result, a
64376441 fn ( $ row ) => array (
64386442 'pass ' => (int ) ( $ row ['pass ' ] ?? 0 ),
64396443 'processed ' => (int ) ( $ row ['processed ' ] ?? 0 ),
6444+ 'planned ' => (int ) ( $ row ['planned ' ] ?? 0 ),
64406445 'would_remove ' => (int ) ( $ row ['would_remove ' ] ?? 0 ),
64416446 'removed ' => (int ) ( $ row ['removed ' ] ?? 0 ),
64426447 'skipped ' => (int ) ( $ row ['skipped ' ] ?? 0 ),
@@ -6445,7 +6450,7 @@ private function render_worktree_cleanup_eligible_drain_result( array $result, a
64456450 ),
64466451 $ passes
64476452 ),
6448- array ( 'pass ' , 'processed ' , 'would_remove ' , 'removed ' , 'skipped ' , 'remaining_total ' , 'bytes ' ),
6453+ array ( 'pass ' , 'processed ' , 'planned ' , ' would_remove ' , 'removed ' , 'skipped ' , 'remaining_total ' , 'bytes ' ),
64496454 array ( 'format ' => 'table ' ),
64506455 'pass '
64516456 );
0 commit comments