Skip to content

Commit

Permalink
Merge pull request #114 from SystemConsultantGroup/fix/1120-noticeboard
Browse files Browse the repository at this point in the history
[FIX] noticeboard component 수정
  • Loading branch information
Jongmin Lee authored Nov 20, 2024
2 parents eaa9b55 + e47c399 commit 6b6357d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/common/Noticeboard/Noticeboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function Noticeboard({
items.map((item, key) => <NoticeItem key={key} {...item} />)
) : (
<li className={styles.item}>
<span>공지사항이 없습니다.</span>
<span>등록된 글이 없습니다.</span>
</li>
)}
</ul>
Expand Down
2 changes: 1 addition & 1 deletion src/theme/AppTheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const AppTheme = createTheme({
tableRow: "#EFEFEF",
inputBorder: "#191C20",
inputBorderFocus: "#228BE6",
inputSurface: "FFFFFF",
inputSurface: "#FFFFFF",
inputSurfaceHover: "#F8F9FF",
},
dark: {
Expand Down

0 comments on commit 6b6357d

Please sign in to comment.