Skip to content

Commit

Permalink
v8(service): Add indentation to last op warning
Browse files Browse the repository at this point in the history
  • Loading branch information
FelisiaM committed Mar 4, 2021
1 parent 000000a commit 50d22e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/v7/service_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func (cmd ServiceCommand) displayLastOperation(serviceInstanceWithDetails v7acti
cmd.UI.DisplayText("Showing status of last operation:")

if serviceInstanceWithDetails.LastOperation == (resources.LastOperation{}) {
cmd.UI.DisplayText("There is no last operation available for this service instance.")
cmd.UI.DisplayText(indent + "There is no last operation available for this service instance.")
} else {
status := fmt.Sprintf("%s %s", serviceInstanceWithDetails.LastOperation.Type, serviceInstanceWithDetails.LastOperation.State)
table := [][]string{
Expand Down

0 comments on commit 50d22e9

Please sign in to comment.