Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
pearmini committed Aug 29, 2023
1 parent 431301e commit cda4e90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export {
register,
Runtime,
extend,
type ChartOptions,
} from './api';

export { ChartEvent } from './utils/event';
Expand Down
3 changes: 2 additions & 1 deletion src/shape/connector/connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ export const Connector: SC<ConnectorOptions> = (options, context) => {
offset2,
length1 || connectLength1,
);
const makerStyle = subObject({ ...style, ...defaults }, 'endMarker');

return select(new Path())
.call(applyStyle, rest)
Expand All @@ -97,7 +98,7 @@ export const Connector: SC<ConnectorOptions> = (options, context) => {
? new Marker({
className: 'marker',
style: {
...subObject(style, 'endMarker'),
...makerStyle,
symbol: inferSymbol,
},
})
Expand Down

0 comments on commit cda4e90

Please sign in to comment.