Skip to content

Commit 9f76396

Browse files
committed
fix: add shouldSkipConfirmation to bulk operations modal
1 parent fa89c11 commit 9f76396

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Pages/ResourceBrowser/ResourceBrowser.Types.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,15 @@ export interface BulkOperation {
9696
}
9797

9898
export type BulkOperationModalProps = {
99-
operationType: 'restart' | 'delete' | 'creation'
100-
clusterName: string
99+
operationType: 'restart' | 'delete' | 'creation' | 'deploy'
100+
clusterName?: string
101101
operations: NonNullable<BulkOperation[]>
102102
handleModalClose: () => void
103103
resourceKind: string
104104
handleReloadDataAfterBulkOperation?: () => void
105105
hideResultsDrawer?: boolean
106106
shouldAllowForceOperation?: true
107+
shouldSkipConfirmation?: true
107108
}
108109

109110
export type BulkOperationModalState = BulkOperationModalProps['operationType'] | 'closed'

0 commit comments

Comments
 (0)