Skip to content

Commit df1128c

Browse files
committed
v2.21.11
1 parent bdb90a5 commit df1128c

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

CHANGE-LOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Vx.x.x(TPL)
77
- Style changes
88
- Dependencies Changes
99

10-
V2.21.10
10+
V2.21.11
1111

1212
### Bug Fixes
1313

examples/public/versions.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[{"value":"/vue-easytable","label":"2.21.10"},{"value":"/vue-easytable/2.20.2","label":"2.20.2"},{"value":"/vue-easytable/2.19.1","label":"2.19.1"},{"value":"/vue-easytable/2.18.3","label":"2.18.3"},{"value":"/vue-easytable/2.17.3","label":"2.17.3"},{"value":"/vue-easytable/2.16.3/","label":"2.16.3"},{"value":"/vue-easytable/2.15.0/","label":"2.15.0"},{"value":"/vue-easytable/2.14.4/","label":"2.14.4"},{"value":"/vue-easytable/2.13.1/","label":"2.13.1"},{"value":"/vue-easytable/2.12.3/","label":"2.12.3"},{"value":"/vue-easytable/2.11.0/","label":"2.11.0"},{"value":"/vue-easytable/1.7.2/app.html","label":"1.x","isVersion1":true}]
1+
[{"value":"/vue-easytable","label":"2.21.11"},{"value":"/vue-easytable/2.20.2","label":"2.20.2"},{"value":"/vue-easytable/2.19.1","label":"2.19.1"},{"value":"/vue-easytable/2.18.3","label":"2.18.3"},{"value":"/vue-easytable/2.17.3","label":"2.17.3"},{"value":"/vue-easytable/2.16.3/","label":"2.16.3"},{"value":"/vue-easytable/2.15.0/","label":"2.15.0"},{"value":"/vue-easytable/2.14.4/","label":"2.14.4"},{"value":"/vue-easytable/2.13.1/","label":"2.13.1"},{"value":"/vue-easytable/2.12.3/","label":"2.12.3"},{"value":"/vue-easytable/2.11.0/","label":"2.11.0"},{"value":"/vue-easytable/1.7.2/app.html","label":"1.x","isVersion1":true}]

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-easytable",
3-
"version": "2.21.10",
3+
"version": "2.21.11",
44
"main": "libs/main.js",
55
"description": "Vue table component",
66
"keywords": [
@@ -136,7 +136,7 @@
136136
"docVersions": [
137137
{
138138
"value": "/vue-easytable",
139-
"label": "2.21.10"
139+
"label": "2.21.11"
140140
},
141141
{
142142
"value": "/vue-easytable/2.20.2",

packages/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import VeSelect from './ve-select';
1313
import VeTable from './ve-table';
1414

1515

16-
const version = '2.21.10';
16+
const version = '2.21.11';
1717
const components = [
1818
VeCheckbox,
1919
VeCheckboxGroup,

packages/ve-table/src/header/header-th.jsx

+1-4
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,7 @@ export default {
215215

216216
let showIndicator = false;
217217
if (!isGroupHeader) {
218-
if (
219-
column["key"] &&
220-
indicatorColKeys.indexOf(column["key"]) > -1
221-
) {
218+
if (indicatorColKeys.indexOf(column["key"]) > -1) {
222219
showIndicator = true;
223220
}
224221
} else {

0 commit comments

Comments
 (0)