Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion internal/actions/get_remote_stacked_pr.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ type RemotePRInfo struct {
Name string
Parent meta.BranchState
PullRequest meta.PullRequest
MergeCommit string
Title string
}

Expand Down Expand Up @@ -104,7 +105,8 @@ func (m *GetRemoteStackedPRModel) Init() tea.Cmd {
Permalink: pr.Permalink,
State: pr.State,
},
Title: pr.Title,
MergeCommit: pr.GetMergeCommit(),
Title: pr.Title,
}
m.prs = append(m.prs, remotePRInfo)
if remotePRInfo.Parent.Trunk {
Expand Down