Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

약간 수정 #142

Merged
merged 1 commit into from
May 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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