Skip to content

Commit

Permalink
Fix Release Zone on Main Branch (#9749)
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks authored Oct 26, 2023
1 parent 30a59b3 commit 97e2f5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/gitjson.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ class GithubComponent extends data.Component<GithubProps, GithubState> {
{showPrResolved && !needsCommit && <PullRequestZone parent={this} needsToken={needsToken} githubId={githubId} master={master} gs={gs} isBlocks={isBlocksMode} needsCommit={needsCommit} user={user} pullStatus={pullStatus} pullRequest={pr} />}
{diffFiles && <DiffView parent={this} diffFiles={diffFiles} cacheKey={gs.commit.sha} allowRevert={true} showWhitespaceDiff={true} blocksMode={isBlocksMode} showConflicts={true} />}
<HistoryZone parent={this} needsToken={needsToken} githubId={githubId} master={master} gs={gs} isBlocks={isBlocksMode} needsCommit={needsCommit} user={user} pullStatus={pullStatus} pullRequest={pr} />
{(master || main) && <ReleaseZone parent={this} needsToken={needsToken} githubId={githubId} master={master} gs={gs} isBlocks={isBlocksMode} needsCommit={needsCommit} user={user} pullStatus={pullStatus} pullRequest={pr} />}
{(master || main) && <ReleaseZone parent={this} needsToken={needsToken} githubId={githubId} master={master || main} gs={gs} isBlocks={isBlocksMode} needsCommit={needsCommit} user={user} pullStatus={pullStatus} pullRequest={pr} />}
{!isBlocksMode && <ExtensionZone parent={this} needsToken={needsToken} githubId={githubId} master={master} gs={gs} isBlocks={isBlocksMode} needsCommit={needsCommit} user={user} pullStatus={pullStatus} pullRequest={pr} />}
<div></div>
</div>
Expand Down

0 comments on commit 97e2f5a

Please sign in to comment.