fix(WEB): 대시보드 오늘의 이슈 카테고리명 오타 수정

- 주식 이슈 → 추심 이슈
- 직정 제고 → 적정 재고
This commit is contained in:
2026-01-23 16:59:05 +09:00
parent 93c99105c0
commit 575bc5a5d3
4 changed files with 10 additions and 10 deletions

View File

@@ -43,8 +43,8 @@ const SCHEDULE_TYPE_COLORS: Record<string, string> = {
// 이슈 뱃지별 색상
const ISSUE_BADGE_COLORS: Record<TodayIssueListBadgeType, string> = {
'수주 성공': 'bg-blue-100 text-blue-700',
'주식 이슈': 'bg-purple-100 text-purple-700',
'고': 'bg-orange-100 text-orange-700',
'추심 이슈': 'bg-purple-100 text-purple-700',
'고': 'bg-orange-100 text-orange-700',
'지출예상내역서': 'bg-green-100 text-green-700',
'세금 신고': 'bg-red-100 text-red-700',
'결재 요청': 'bg-yellow-100 text-yellow-700',

View File

@@ -18,8 +18,8 @@ import type { TodayIssueListItem, TodayIssueListBadgeType } from '../types';
// 뱃지 색상 매핑
const BADGE_COLORS: Record<TodayIssueListBadgeType, string> = {
'수주 성공': 'bg-blue-100 text-blue-700 hover:bg-blue-100',
'주식 이슈': 'bg-purple-100 text-purple-700 hover:bg-purple-100',
'고': 'bg-orange-100 text-orange-700 hover:bg-orange-100',
'추심 이슈': 'bg-purple-100 text-purple-700 hover:bg-purple-100',
'고': 'bg-orange-100 text-orange-700 hover:bg-orange-100',
'지출예상내역서': 'bg-green-100 text-green-700 hover:bg-green-100',
'세금 신고': 'bg-red-100 text-red-700 hover:bg-red-100',
'결재 요청': 'bg-yellow-100 text-yellow-700 hover:bg-yellow-100',
@@ -46,8 +46,8 @@ const getRandomCreditRating = (): CreditRating => {
const FILTER_KEYS = [
'all',
'수주 성공',
'주식 이슈',
'고',
'추심 이슈',
'고',
'지출예상내역서',
'세금 신고',
'결재 요청',

View File

@@ -59,8 +59,8 @@ export interface TodayIssueItem {
// 오늘의 이슈 뱃지 타입
export type TodayIssueListBadgeType =
| '수주 성공'
| '주식 이슈'
| '고'
| '추심 이슈'
| '고'
| '지출예상내역서'
| '세금 신고'
| '결재 요청'

View File

@@ -572,8 +572,8 @@ export function transformStatusBoardResponse(api: StatusBoardApiResponse): Today
/** 유효한 뱃지 타입 목록 */
const VALID_BADGE_TYPES: TodayIssueListBadgeType[] = [
'수주 성공',
'주식 이슈',
'고',
'추심 이슈',
'고',
'지출예상내역서',
'세금 신고',
'결재 요청',