File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/Shared/Components/CICDHistory Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ import { ReactComponent as ZoomOut } from '../../../Assets/Icon/ic-exit-fullscre
28
28
import './cicdHistory.scss'
29
29
30
30
export const LogResizeButton = ( {
31
+ shortcutCombo = 'f' ,
31
32
onlyOnLogs = true ,
32
33
disableKeybindings = false ,
33
34
fullScreenView,
@@ -62,7 +63,7 @@ export const LogResizeButton = ({
62
63
placement = "top"
63
64
arrow = { false }
64
65
className = "default-tt"
65
- content = { fullScreenView ? ' Exit fullscreen (f)' : ' Enter fullscreen (f)' }
66
+ content = { fullScreenView ? ` Exit fullscreen (${ shortcutCombo } )` : ` Enter fullscreen (${ shortcutCombo } )` }
66
67
>
67
68
< div >
68
69
{ fullScreenView ? (
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ export enum FetchIdDataStatus {
46
46
}
47
47
48
48
export interface LogResizeButtonType {
49
+ shortcutCombo ?: string
49
50
onlyOnLogs ?: boolean
50
51
disableKeybindings ?: boolean
51
52
fullScreenView : boolean
You can’t perform that action at this time.
0 commit comments