Merge pull request #873 from hectorqin/master

修复表格Filter激活状态显示bug,补充本地发布命令及编译依赖
This commit is contained in:
liaoxuezhi 2020-08-21 13:06:32 +08:00 committed by GitHub
commit 689116b0f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -10,6 +10,7 @@
"stop": "fis3 server stop",
"dev": "fis3 release -cwd ./public",
"publish2npm": "sh publish.sh && npm publish",
"build": "sh publish.sh",
"prettier": "prettier --write '{src,examples,scss}/**/*.{tsx,ts,jsx,scss}'"
},
"repository": {
@ -119,6 +120,7 @@
"fis3-deploy-skip-packed": "0.0.5",
"fis3-hook-commonjs": "^0.1.31",
"fis3-hook-node_modules": "^2.3.1",
"fis3-hook-relative": "^2.0.3",
"fis3-packager-deps-pack": "^0.1.2",
"fis3-parser-typescript": "^1.3.0",
"fis3-postpackager-loader": "^2.1.11",

View File

@ -2510,7 +2510,8 @@ export class HeadCellFilterDropDown extends React.Component<
alterOptions(options: Array<any>) {
const {data, filterable, name} = this.props;
const filterValue = (data && data[name]) || '';
const filterValue =
data && typeof data[name] !== 'undefined' ? data[name] : '';
if (filterable.multiple) {
options = options.map(option => ({
@ -2591,7 +2592,7 @@ export class HeadCellFilterDropDown extends React.Component<
<span
className={cx(
`${ns}TableCell-filterBtn`,
data[name] ? 'is-active' : ''
typeof data[name] !== 'undefined' ? 'is-active' : ''
)}
>
<span onClick={this.open}>