File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export class JsonRpcEnvvarClient implements PromiseClient<typeof EnvironmentVari
56
56
const userEnvVarfound = userEnvVars . find ( ( i ) => i . id === req . envVarId ) ;
57
57
if ( userEnvVarfound ) {
58
58
const variable : UserEnvVarValue = {
59
+ id : req . envVarId ,
59
60
name : req . name ?? userEnvVarfound . name ,
60
61
value : req . value ?? userEnvVarfound . value ,
61
62
repositoryPattern : req . repositoryPattern ?? userEnvVarfound . repositoryPattern ,
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ export class EnvironmentVariableServiceAPI implements ServiceImpl<typeof Environ
72
72
const userEnvVarfound = userEnvVars . find ( ( i ) => i . id === req . envVarId ) ;
73
73
if ( userEnvVarfound ) {
74
74
const variable : UserEnvVarValue = {
75
+ id : req . envVarId ,
75
76
name : req . name ?? userEnvVarfound . name ,
76
77
value : req . value ?? userEnvVarfound . value ,
77
78
repositoryPattern : req . repositoryPattern ?? userEnvVarfound . repositoryPattern ,
You can’t perform that action at this time.
0 commit comments