File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -241,11 +241,13 @@ function CreateIssueApp() {
241241 borderBottomStyle = "solid"
242242 borderBottomColor = "border.default"
243243 >
244- < IssueOpenedIcon size = { 16 } />
245- < Text sx = { { fontWeight : "semibold" } } >
244+ < Box sx = { { color : "fg.default" , flexShrink : 0 , display : "flex" } } >
245+ < IssueOpenedIcon size = { 16 } />
246+ </ Box >
247+ < Text sx = { { fontWeight : "semibold" , whiteSpace : "nowrap" } } >
246248 { isUpdateMode ? `Update issue #${ issueNumber } ` : "New issue" }
247249 </ Text >
248- < Text sx = { { color : "fg.muted" , fontSize : 0 } } >
250+ < Text sx = { { color : "fg.muted" , fontSize : 0 , ml : 1 } } >
249251 { owner } /{ repo }
250252 </ Text >
251253 </ Box >
Original file line number Diff line number Diff line change @@ -231,9 +231,11 @@ function CreatePRApp() {
231231 borderBottomStyle = "solid"
232232 borderBottomColor = "border.default"
233233 >
234- < GitPullRequestIcon size = { 16 } />
235- < Text sx = { { fontWeight : "semibold" } } > New pull request</ Text >
236- < Text sx = { { color : "fg.muted" , fontSize : 0 } } >
234+ < Box sx = { { color : "fg.default" , flexShrink : 0 , display : "flex" } } >
235+ < GitPullRequestIcon size = { 16 } />
236+ </ Box >
237+ < Text sx = { { fontWeight : "semibold" , whiteSpace : "nowrap" } } > New pull request</ Text >
238+ < Text sx = { { color : "fg.muted" , fontSize : 0 , ml : 1 } } >
237239 { owner } /{ repo }
238240 </ Text >
239241 { head && base && (
You can’t perform that action at this time.
0 commit comments