Skip to content

Commit

Permalink
Merge pull request #270 from jaewonjjang/dev
Browse files Browse the repository at this point in the history
차트 예외 처리 및 디자인 수정
  • Loading branch information
Moon-GD authored Feb 22, 2023
2 parents 44f510d + 5541b04 commit cade023
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontEnd/public/js/mapView/chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,6 @@ function ShowErrorMessageAtChartArea(){
const errorMessage = document.createElement('span');
errorMessage.id = 'nocharterr';
errorMessage.innerHTML = '현재 데이터를 준비중입니다.';
ChartArea.append(errorMessage);
ChartArea[0].append(errorMessage);
}
export {getChartData, ShowChart}
3 changes: 2 additions & 1 deletion frontEnd/public/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -3132,9 +3132,10 @@ a {
height: 40%;
}
.main .main__ForMap .main__SearchBarnDetailTab .main__GSTDetailTab .main__GSTdetail .main__GSTdetail__Contents .main__GSTdetail__Contents__Chart #nocharterr {
margin-top: 5%;
width: 100%;
height: 40%;
color: grey;
color: rgb(170, 170, 170);
font-size: 18px;
font-weight: 400;
}
Expand Down
2 changes: 1 addition & 1 deletion frontEnd/public/styles/index.css.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion frontEnd/public/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3169,9 +3169,10 @@ a {
height:40%;
}
& #nocharterr {
margin-top:5%;
width:100%;
height:40%;
color : grey;
color : rgb(170, 170, 170);
font-size: 18px;
font-weight: 400;
}
Expand Down

0 comments on commit cade023

Please sign in to comment.