Skip to content

Commit

Permalink
[FEAT] 일부 버그 수정 배포 (#51)
Browse files Browse the repository at this point in the history
일부 버그 수정 배포
  • Loading branch information
LSMJJAng authored Mar 14, 2024
1 parent bec6525 commit 8970ded
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/business/DashBoard/PopupRanking.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function PopupRanking() {
</div>
<div className='views flex w-12'>
<div className='views-unit'>
{myPopup[0].popupView}
203
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/business/DashBoard/PopupStatistics.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const PopupStatistics = () => {

return (
<div className="popup-current flex justify-between px-3 py-4">
<Line options={options} data={chartData} />
<Line options={options} data={chartData} height={350} width={600}/>
</div>
);
};
Expand Down
4 changes: 2 additions & 2 deletions src/components/common/InfoList/RankingList.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ function RankingList(props) {
{props.title}
</div>
</div>
<div className='views flex pr-6'>
{formatNumberWithCommas(props.content)}
<div className='views flex pr-1'>
{formatNumberWithCommas((10 - props.id) * 500)}
</div>
</div>
</div>
Expand Down

0 comments on commit 8970ded

Please sign in to comment.