Skip to content

Commit

Permalink
removed name in match
Browse files Browse the repository at this point in the history
  • Loading branch information
rkoval committed Jul 27, 2020
1 parent 9ce1ab6 commit b8d98ad
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion workflow/yml_services.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ import (

func AddServiceToWorkflow(wf *aw.Workflow, awsService awsworkflow.AwsService) {
title := awsService.Id
match := awsService.Id + " " + awsService.ShortName + " " + awsService.Name
match := awsService.Id
if awsService.ShortName == "" {
match += awsService.Name
}

subtitle := ""
if len(awsService.SubServices) > 0 {
subtitle += "🗂 "
Expand Down

0 comments on commit b8d98ad

Please sign in to comment.