Skip to content

Commit

Permalink
bugfix: Entity buttons didnt support popupOnStart
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesread committed Mar 24, 2024
1 parent a8c4db1 commit a5a1c64
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions internal/grpcapi/grpcApiActions.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,10 @@ func buildEntityAction(tpl *config.Action, entityTitle string, entityIndex int)
}

return &pb.Action{
Id: virtualActionId,
Title: sv.ReplaceEntityVars(prefix, tpl.Title),
Icon: tpl.Icon,
Id: virtualActionId,
Title: sv.ReplaceEntityVars(prefix, tpl.Title),
Icon: tpl.Icon,
PopupOnStart: tpl.PopupOnStart,
}
}

Expand Down

0 comments on commit a5a1c64

Please sign in to comment.