Skip to content

Commit 59ea761

Browse files
authored
AXON-120: epic/parent link clickable (#339)
* AXON-120: epic/parent link clickable * AXON-120: updated changelog
1 parent 1fea7fb commit 59ea761

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
### [Report an Issue](https://github.com/atlassian/atlascode/issues/new/choose)
22

3-
-----
3+
---
44

55
## What's new in 3.6.0
66

77
### Deprecations
88

9-
- Following the official deprecation of Bitbucket issues, and their very low usage in our extension, we have removed the Bitbucket issues functionality from Atlascode.
9+
- Following the official deprecation of Bitbucket issues, and their very low usage in our extension, we have removed the Bitbucket issues functionality from Atlascode.
1010

1111
Users who still need to use the Bitbucket issues functionality can manually install the latest version supporting it: v3.4.25.
1212

13+
### Bug fixes
14+
15+
- Fixed bug where Epic/Parent links on Jira Issue Screen Navigation are not clickable
16+
1317
## What's new in 3.4.25
1418

1519
### Improvements
@@ -18,7 +22,7 @@
1822

1923
### Bug fixes
2024

21-
- Some Jira issues weren't loading due to poor handling of missing fields.
25+
- Some Jira issues weren't loading due to poor handling of missing fields.
2226

2327
## What's new in 3.4.24
2428

@@ -29,7 +33,7 @@
2933

3034
### Bug fixes:
3135

32-
- Fixed bug in Bitbucket DC for PRs with comments where the PR Details would not display.
36+
- Fixed bug in Bitbucket DC for PRs with comments where the PR Details would not display.
3337

3438
## What's new in 3.4.23
3539

src/webviews/components/issue/create-issue-screen/Panel.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export const Panel: React.FC<PanelProps> = ({ isDefaultExpanded, header, childre
4444
alignItems: 'center',
4545
padding: '2px 0 2px 24px',
4646
width: '100%',
47+
cursor: 'pointer',
4748
}}
4849
>
4950
<span style={{ position: 'absolute', top: 0, left: 0 }}>

src/webviews/components/issue/view-issue-screen/JiraIssuePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ export default class JiraIssuePage extends AbstractIssueEditorPage<Emit, Accept,
462462
onItemClick={() =>
463463
this.handleOpenIssue({
464464
siteDetails: this.state.siteDetails,
465-
key: this.state.fieldValues['parent'],
465+
key: this.state.fieldValues['parent'].key,
466466
})
467467
}
468468
/>

0 commit comments

Comments
 (0)