We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa89c11 commit 9f76396Copy full SHA for 9f76396
src/Pages/ResourceBrowser/ResourceBrowser.Types.ts
@@ -96,14 +96,15 @@ export interface BulkOperation {
96
}
97
98
export type BulkOperationModalProps = {
99
- operationType: 'restart' | 'delete' | 'creation'
100
- clusterName: string
+ operationType: 'restart' | 'delete' | 'creation' | 'deploy'
+ clusterName?: string
101
operations: NonNullable<BulkOperation[]>
102
handleModalClose: () => void
103
resourceKind: string
104
handleReloadDataAfterBulkOperation?: () => void
105
hideResultsDrawer?: boolean
106
shouldAllowForceOperation?: true
107
+ shouldSkipConfirmation?: true
108
109
110
export type BulkOperationModalState = BulkOperationModalProps['operationType'] | 'closed'
0 commit comments