File tree Expand file tree Collapse file tree 4 files changed +8
-0
lines changed
components/inputs/reactHookForm/numbers Expand file tree Collapse file tree 4 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ export function SliderInput({
24
24
valueLabelDisplay,
25
25
valueLabelFormat,
26
26
onValueChanged = identity ,
27
+ ...otherProps
27
28
} : SliderInputProps ) {
28
29
const {
29
30
field : { onChange, value } ,
@@ -50,6 +51,7 @@ export function SliderInput({
50
51
marks = { marks }
51
52
valueLabelDisplay = { valueLabelDisplay }
52
53
valueLabelFormat = { valueLabelFormat }
54
+ { ...otherProps }
53
55
/>
54
56
) ;
55
57
}
Original file line number Diff line number Diff line change @@ -74,4 +74,5 @@ export const networkModificationsEn = {
74
74
'network_modifications.CREATE_COUPLING_DEVICE' : 'Creating a coupling device in voltage level {computedLabel}' ,
75
75
'network_modifications.BALANCES_ADJUSTMENT_MODIFICATION' : 'Balances adjustment modification' ,
76
76
'network_modifications.CREATE_VOLTAGE_LEVEL_TOPOLOGY' : 'Creating a bus bar in voltage level {computedLabel}' ,
77
+ 'network_modifications.CREATE_VOLTAGE_LEVEL_SECTION' : 'Creating voltage level Busbar sections {computedLabel}' ,
77
78
} ;
Original file line number Diff line number Diff line change @@ -78,4 +78,5 @@ export const networkModificationsFr = {
78
78
'network_modifications.CREATE_COUPLING_DEVICE' : 'Création de couplage / omnibus dans le poste {computedLabel}' ,
79
79
'network_modifications.BALANCES_ADJUSTMENT_MODIFICATION' : "Modification d'équilibrage bilan" ,
80
80
'network_modifications.CREATE_VOLTAGE_LEVEL_TOPOLOGY' : "Ajout d'un jeu de barre dans le poste {computedLabel}" ,
81
+ 'network_modifications.CREATE_VOLTAGE_LEVEL_SECTION' : 'Création des Busbar sections dans le poste {computedLabel}' ,
81
82
} ;
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ export enum ModificationType {
55
55
CREATE_COUPLING_DEVICE = 'CREATE_COUPLING_DEVICE' ,
56
56
BALANCES_ADJUSTMENT = 'BALANCES_ADJUSTMENT_MODIFICATION' ,
57
57
CREATE_VOLTAGE_LEVEL_TOPOLOGY = 'CREATE_VOLTAGE_LEVEL_TOPOLOGY' ,
58
+ CREATE_VOLTAGE_LEVEL_SECTION = 'CREATE_VOLTAGE_LEVEL_SECTION' ,
58
59
}
59
60
60
61
export const MODIFICATION_TYPES = {
@@ -208,4 +209,7 @@ export const MODIFICATION_TYPES = {
208
209
CREATE_VOLTAGE_LEVEL_TOPOLOGY : {
209
210
type : ModificationType . CREATE_VOLTAGE_LEVEL_TOPOLOGY ,
210
211
} ,
212
+ CREATE_VOLTAGE_LEVEL_SECTION : {
213
+ type : ModificationType . CREATE_VOLTAGE_LEVEL_SECTION ,
214
+ } ,
211
215
} ;
You can’t perform that action at this time.
0 commit comments