Skip to content

Commit

Permalink
Merge pull request #142 from 0420syj/tw
Browse files Browse the repository at this point in the history
약간 수정
  • Loading branch information
taewankang authored May 23, 2020
2 parents 04bf271 + daf2353 commit da8e6ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test6/frontend/src/menu/SourceList.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const SourceList = memo(() => {
OpenSourceData.length !== 0 &&
<>
<Category title={'Web Software'} body={websiteSoftware} toggle={toggleWeb} isOpen={isOpenWeb}/>
<Category title={'Communication Application'} body={communicationApplication} toggle={toggleCommun} isOpen={isOpenCommun}/>
<Category title={'Communication App'} body={communicationApplication} toggle={toggleCommun} isOpen={isOpenCommun}/>
<Category title={'Development Tool'} body={developmentTool} toggle={toggleDevel} isOpen={isOpenDevel}/>
<Category title={'Database'} body={database} toggle={toggleData} isOpen={isOpenData}/>
<Category title={'Image/Media'} body={imageMedia} toggle={toggleImage} isOpen={isOpenImage}/>
Expand Down
2 changes: 1 addition & 1 deletion test6/frontend/src/sign/signup/SignUpForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ const SignUp = () => {
}
signup(signupRequest).then(() => <Redirect to="/"/>)
.catch((error) => {
alert("fail");

});
}

Expand Down
4 changes: 2 additions & 2 deletions test6/frontend/src/source/detail/DetailContents.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ const DetailContents = ({publishDate, modifyDate, link, title, scores}) => {
<div className='contents'>
{
linkArray.length !== 0 &&
<div style={{overflow: 'auto', height: '450px', marginBottom: '20px'}}>
<div style={{overflow: 'auto',width: '1300px', height: '450px', marginBottom: '20px'}}>
{
linkArray.map(item =>
linkArray.map(item =>
<a
key={idx++}
target='_blank'
Expand Down

0 comments on commit da8e6ab

Please sign in to comment.