Skip to content

Commit

Permalink
fix empty remark after create workflow task
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick Zhao <[email protected]>
  • Loading branch information
PetrusZ committed Jan 6, 2025
1 parent ff888d7 commit edf3299
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ type WorkflowTask struct {
GlobalContext map[string]string `bson:"global_context" json:"global_context"`
ClusterIDMap map[string]bool `bson:"cluster_id_map" json:"cluster_id_map"`
Status config.Status `bson:"status" json:"status,omitempty"`
Remark string `bson:"remark" json:"remark"`
Remark string `bson:"remark,omitempty" json:"remark"`
TaskCreator string `bson:"task_creator" json:"task_creator,omitempty"`
TaskCreatorID string `bson:"task_creator_id" json:"task_creator_id,omitempty"`
TaskCreatorPhone string `bson:"task_creator_phone" json:"task_creator_phone"`
Expand Down

0 comments on commit edf3299

Please sign in to comment.