Skip to content

Commit

Permalink
tiny
Browse files Browse the repository at this point in the history
  • Loading branch information
tnrich committed Aug 26, 2022
1 parent fad5679 commit fb8c58c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v18.1.15](https://github.com/TeselaGen/openVectorEditor/compare/v17.3.12...v18.1.15)

- Wrap arithmetic involving CSS custom property with calc [`#859`](https://github.com/TeselaGen/openVectorEditor/pull/859)
- adding a new arrowheadType of NONE option [`#854`](https://github.com/TeselaGen/openVectorEditor/pull/854)
- Added Selection Cypress Command and Fixed Failing Tests [`#849`](https://github.com/TeselaGen/openVectorEditor/pull/849)
- Improve alignment view zoom scaling [`#835`](https://github.com/TeselaGen/openVectorEditor/pull/835)
Expand Down
4 changes: 2 additions & 2 deletions demo/src/EditorDemo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,11 +155,11 @@ export default class EditorDemo extends React.Component {
};
rightClickOverridesExample = {
rightClickOverrides: {
partRightClicked: (items) => {
partRightClicked: (items, { annotation }, { sequenceData }) => {
return [
...items,
{
text: "My Part Override",
text: `My Part Override - ${annotation.name} - ${sequenceData.sequence.length}`,
onClick: () => window.toastr.success("Part Override Hit!")
}
];
Expand Down

0 comments on commit fb8c58c

Please sign in to comment.