File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ const formSchema = yup
54
54
55
55
export interface FilterCreationDialogProps {
56
56
open : boolean ;
57
- onClose : ( ) => void ;
57
+ onClose : ( e ?: unknown , nextSelectedDirectoryId ?: string | null ) => void ;
58
58
activeDirectory ?: UUID ;
59
59
elementExists ?: ElementExistsType ;
60
60
language ?: string ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ export enum ElementType {
13
13
CASE = 'CASE' ,
14
14
FILTER = 'FILTER' ,
15
15
MODIFICATION = 'MODIFICATION' ,
16
+ PARAMETERS = 'PARAMETERS' ,
16
17
CONTINGENCY_LIST = 'CONTINGENCY_LIST' ,
17
18
VOLTAGE_INIT_PARAMETERS = 'VOLTAGE_INIT_PARAMETERS' ,
18
19
SECURITY_ANALYSIS_PARAMETERS = 'SECURITY_ANALYSIS_PARAMETERS' ,
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ export type ElementAttributes = {
43
43
parentUuid : null | UUID ;
44
44
specificMetadata : Record < string , object > ;
45
45
uploading ?: boolean ;
46
+ hasMetadata ?: boolean ;
47
+ subtype ?: string ;
46
48
} ;
47
49
48
50
export type Equipment =
You can’t perform that action at this time.
0 commit comments