Skip to content

Commit

Permalink
fix: 修复滑块移动会增删日期的问题
Browse files Browse the repository at this point in the history
fix #101
  • Loading branch information
xpyjs committed Jun 21, 2024
1 parent 40ff1ad commit cc9d4a9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [2.1.10](https://github.com/xpyjs/gantt/compare/v2.1.9...v2.1.10) (2024-06-21)


### Bug Fixes

* 修复滑块移动会增删日期的问题 ([40ff1ad](https://github.com/xpyjs/gantt/commit/40ff1adfac31520d4871002cb0185bbc24ea6480)), closes [#101](https://github.com/xpyjs/gantt/issues/101)

### [2.1.9](https://github.com/xpyjs/gantt/compare/v2.1.8...v2.1.9) (2024-06-17)

### [2.1.8](https://github.com/xpyjs/gantt/compare/v2.1.7...v2.1.8) (2024-06-14)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "jeremyjone",
"license": "MIT",
"private": false,
"version": "2.1.9",
"version": "2.1.10",
"preview": false,
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion src/models/data/links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default class AllLinks {
return null;
}
})
.filter(link => link !== null) as LinkItem[];
.filter(link => link !== null);
}

/**
Expand Down

0 comments on commit cc9d4a9

Please sign in to comment.