Skip to content

Commit cc9d4a9

Browse files
committed
fix: 修复滑块移动会增删日期的问题
fix #101
1 parent 40ff1ad commit cc9d4a9

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
### [2.1.10](https://github.com/xpyjs/gantt/compare/v2.1.9...v2.1.10) (2024-06-21)
6+
7+
8+
### Bug Fixes
9+
10+
* 修复滑块移动会增删日期的问题 ([40ff1ad](https://github.com/xpyjs/gantt/commit/40ff1adfac31520d4871002cb0185bbc24ea6480)), closes [#101](https://github.com/xpyjs/gantt/issues/101)
11+
512
### [2.1.9](https://github.com/xpyjs/gantt/compare/v2.1.8...v2.1.9) (2024-06-17)
613

714
### [2.1.8](https://github.com/xpyjs/gantt/compare/v2.1.7...v2.1.8) (2024-06-14)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "jeremyjone",
55
"license": "MIT",
66
"private": false,
7-
"version": "2.1.9",
7+
"version": "2.1.10",
88
"preview": false,
99
"publishConfig": {
1010
"access": "public",

src/models/data/links.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export default class AllLinks {
5353
return null;
5454
}
5555
})
56-
.filter(link => link !== null) as LinkItem[];
56+
.filter(link => link !== null);
5757
}
5858

5959
/**

0 commit comments

Comments
 (0)