Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pro-blocks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
pro-blocks
Commits
faec7edc
Commit
faec7edc
authored
7 years ago
by
陈帅
Committed by
niko
7 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug when TagSelectOption is 1 (#336)
parent
687057be
master
eslint-typescript
greenkeeper/initial
qixian
screenshot
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
src/components/AvatarList/index.d.ts
src/components/AvatarList/index.d.ts
+1
-1
src/components/TagSelect/index.js
src/components/TagSelect/index.js
+3
-4
No files found.
src/components/AvatarList/index.d.ts
View file @
faec7edc
import
React
from
"
react
"
;
export
interface
AvatarItemProps
{
tips
:
string
|
React
.
ReactNode
;
tips
:
React
.
ReactNode
;
src
:
string
;
}
...
...
This diff is collapsed.
Click to expand it.
src/components/TagSelect/index.js
View file @
faec7edc
...
...
@@ -39,7 +39,8 @@ class TagSelect extends Component {
}
getAllTags
()
{
const
{
children
}
=
this
.
props
;
let
{
children
}
=
this
.
props
;
children
=
React
.
Children
.
toArray
(
children
);
const
checkedTags
=
children
.
filter
(
child
=>
this
.
isTagSelectOption
(
child
))
.
map
(
child
=>
child
.
props
.
value
);
...
...
@@ -86,7 +87,6 @@ class TagSelect extends Component {
[
styles
.
hasExpandTag
]:
expandable
,
[
styles
.
expanded
]:
expand
,
});
return
(
<
div
className
=
{
cls
}
style
=
{
style
}
>
<
CheckableTag
...
...
@@ -97,8 +97,7 @@ class TagSelect extends Component {
全部
<
/CheckableTag
>
{
checkedTags
&&
children
.
map
((
child
)
=>
{
checkedTags
&&
React
.
Children
.
map
(
children
,
(
child
)
=>
{
if
(
this
.
isTagSelectOption
(
child
))
{
return
React
.
cloneElement
(
child
,
{
key
:
`tag-select-
${
child
.
props
.
value
}
`
,
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment