Skip to content

Commit

Permalink
feat: Line & AreaChart last 값 늘림
Browse files Browse the repository at this point in the history
  • Loading branch information
yoopark committed Nov 24, 2023
1 parent ff37b2a commit db7e36c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/src/Home/dashboard-contents/Eval/EvalCountRecords.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const EvalCountRecords = () => {
const title = '일간 평가 횟수 추이';
const { loading, error, data } = useQuery(GET_EVAL_COUNT_RECORDS, {
variables: {
last: 30,
last: 60,
},
});
if (loading) {
Expand Down
2 changes: 1 addition & 1 deletion app/src/Home/dashboard-contents/Team/TeamCloseRecords.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const TeamCloseRecords = () => {
const title = '일간 팀 제출 횟수 추이';
const { loading, error, data } = useQuery(GET_TEAM_CLOSE_RECORDS, {
variables: {
last: 30,
last: 60,
},
});
if (loading) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const BlackholedCountRecords = () => {
const title = '월간 블랙홀 인원 추이';
const { loading, error, data } = useQuery(GET_BLACKHOLED_COUNT_RECORDS, {
variables: {
last: 12,
last: 24,
},
});

Expand Down
2 changes: 1 addition & 1 deletion app/src/Profile/dashboard-contents/Eval/CountRecords.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const CountRecords = () => {
const { loading, error, data } = useQuery(GET_COUNT_RECORDS_BY_LOGIN, {
variables: {
login,
last: 12,
last: 24,
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const LogtimeRecords = () => {
const { loading, error, data } = useQuery(GET_LOGTIME_RECORDS_BY_LOGIN, {
variables: {
login,
last: 12,
last: 24,
},
});

Expand Down

0 comments on commit db7e36c

Please sign in to comment.