File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
application/commands/application Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ func (uac *updateAppCommand) CommandName() string {
4646
4747func (uac * updateAppCommand ) buildRequestPayload (ctx * components.Context ) (* model.AppDescriptor , error ) {
4848 applicationKey := ctx .Arguments [0 ]
49- displayName := ctx .GetStringFlagValue (commands .DisplayNameFlag )
49+ applicationName := ctx .GetStringFlagValue (commands .ApplicationNameFlag )
5050
5151 businessCriticality := ctx .GetStringFlagValue (commands .BusinessCriticalityFlag )
5252 if businessCriticality != "" && ! slices .Contains (model .BusinessCriticalityValues , businessCriticality ) {
@@ -68,7 +68,7 @@ func (uac *updateAppCommand) buildRequestPayload(ctx *components.Context) (*mode
6868
6969 return & model.AppDescriptor {
7070 ApplicationKey : applicationKey ,
71- ApplicationName : displayName ,
71+ ApplicationName : applicationName ,
7272 Description : description ,
7373 MaturityLevel : maturityLevel ,
7474 BusinessCriticality : businessCriticality ,
You can’t perform that action at this time.
0 commit comments