Skip to content

Commit

Permalink
Merge pull request #172 from IT-Cotato/fix/COT-82-resolve-attendance-…
Browse files Browse the repository at this point in the history
…design-value-issue

Fix/cot 82 resolve attendance design value issue
  • Loading branch information
Ea-st-ring authored Nov 26, 2024
2 parents e23e5fe + 08ccba2 commit a02cdee
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 7 additions & 1 deletion src/components/attendance/attendance-fab/AttendanceFab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,13 @@ const AttendanceFab = () => {
//
return (
<CotatoFloatingActionButton
icon={<CotatoIcon icon="expand-solid" size="100%" />}
icon={
<CotatoIcon
icon="expand-solid"
size="100%"
color={(theme) => theme.colors.common.white_const}
/>
}
name="레이아웃"
>
{Object.entries(fabList).map(([key, value]) => (
Expand Down
1 change: 1 addition & 0 deletions src/pages/Attendance/Report/AttendanceReport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const AttendanceReport = () => {
<Container
sx={{
height: '100%',
padding: '2rem',
}}
>
<AttendanceReportHeader />
Expand Down
3 changes: 2 additions & 1 deletion src/pages/Attendance/Report/AttendanceReportAll.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Container, Stack } from '@mui/material';
import React from 'react';
import { Container, Stack } from '@mui/material';
import AttendanceReportSubFilters from './AttendanceReportSubFilters';
import AttendanceReportAllTable from './AttendanceReportAllTable';
import AttendanceReportHeader from './AttendanceReportHeader';
Expand All @@ -13,6 +13,7 @@ const AttendanceReportAll = () => {
<Container
sx={{
height: '100%',
padding: '2rem',
}}
>
<AttendanceReportHeader />
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Attendance/Report/AttendanceReportAllTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ const AttendanceReportAllTable = () => {
</AttedanceTableLayout.TableCell>

<AttedanceTableLayout.TableCell>
{record.statistic?.online}
{record.statistic?.offline}
</AttedanceTableLayout.TableCell>

<AttedanceTableLayout.TableCell>
{record.statistic?.offline}
{record.statistic?.online}
</AttedanceTableLayout.TableCell>

<AttedanceTableLayout.TableCell>
Expand Down

0 comments on commit a02cdee

Please sign in to comment.