This is an automated email from the ASF dual-hosted git repository.
klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 9ace5328 fix(tapd): modify story bug because of new api (#2794)
9ace5328 is described below
commit 9ace532895ec2062213dd43509f64a2e52059c8f
Author: Warren Chen <[email protected]>
AuthorDate: Tue Aug 23 16:00:33 2022 +0800
fix(tapd): modify story bug because of new api (#2794)
closes #2792
---
plugins/tapd/models/story_bug.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/tapd/models/story_bug.go b/plugins/tapd/models/story_bug.go
index af7f6a84..de12a43a 100644
--- a/plugins/tapd/models/story_bug.go
+++ b/plugins/tapd/models/story_bug.go
@@ -23,7 +23,7 @@ import (
type TapdStoryBug struct {
ConnectionId uint64 `gorm:"primaryKey"`
- WorkspaceId uint64 `gorm:"primaryKey" json:"workspace_id,string"`
+ WorkspaceId uint64 `gorm:"primaryKey" json:"workspace_id"`
StoryId uint64 `gorm:"primaryKey" json:"story_id,string"`
BugId uint64 `gorm:"primaryKey" json:"bug_id,string"`
common.NoPKModel