This repository was archived by the owner on Feb 22, 2022. It is now read-only.
File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import "./Configuration.scss";
13
13
import PresetSelection from './PresetSelection' ;
14
14
15
15
export interface ConfigurationProps {
16
- readonly height : number ;
16
+ readonly height : string ;
17
17
readonly textInputWidth : number ;
18
18
onPullsecretChangeClicked : ( event : React . SyntheticEvent ) => void ;
19
19
onSaveClicked : ( state : State ) => void ;
@@ -35,7 +35,6 @@ export interface State {
35
35
}
36
36
export default class Configuration extends React . Component < ConfigurationProps > {
37
37
static propTypes = {
38
- onValueChanged : PropTypes . func ,
39
38
onSaveClicked : PropTypes . func ,
40
39
onResetClicked : PropTypes . func ,
41
40
onPullsecretChangeClicked : PropTypes . func ,
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ interface State {
7
7
readonly log : string ;
8
8
}
9
9
export interface LogWindowProps {
10
- readonly width : string ;
11
- readonly height : string ;
10
+ readonly width ? : string ;
11
+ readonly height ? : string ;
12
12
readonly rows : number | undefined ;
13
13
readonly cols : number | undefined ;
14
14
}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ export interface PresetSelectionProps {
8
8
readonly value : string ;
9
9
readonly podmanDescription : string ;
10
10
readonly openshiftDescription : string ;
11
- readonly isCompact : boolean ;
11
+ readonly isCompact ? : boolean ;
12
12
readonly id ?: string ;
13
13
readonly className ?: string ;
14
14
onPresetChange ?: ( value : string ) => void ;
You can’t perform that action at this time.
0 commit comments