Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.0.3/Tag] 기술스택 -> 관련 태그로 명칭변경, 모집글 작성/수정시 태그 필수 제외 #959

Merged
merged 3 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/panel/main-page/Options.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ const Options = ({
>
<Grid item xs={12}>
<TagAutoComplete
title={'기술스택'}
title={'관련 태그'}
tagList={listData || []}
datas={tagData}
setData={setTagData}
Expand Down
2 changes: 1 addition & 1 deletion src/app/recruit/write/panel/CreateTeamEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ const CreateTeamEditor = ({
)}
control={control}
name="tagList"
rules={{ required: true }}
// rules={{ required: true }}
/>
</FieldWithLabel>
{/* 팀 소개 글 작성 (커스텀에디터 적용되어야 할 부분) */}
Expand Down
2 changes: 1 addition & 1 deletion src/app/showcase/panel/ShowcasePc/ShowcasePcView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ const ShowcasePcView = ({ data }: { data: ICardData | undefined }) => {
<Stack direction={'row'} spacing={'0.5rem'}>
<TagIcon />
<Typography color={'text.alternative'}>
기술스택
관련 태그
</Typography>

{data.skill.map((skill, index) => (
Expand Down
2 changes: 1 addition & 1 deletion src/app/showcase/panel/common/SkillInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const SkillInput = ({ skills }: ISkillProps) => {
<Stack spacing={'0.75rem'} sx={style.skillInputViewer}>
<LabelWithIcon
svgIcon={<TagIcon sx={style.IconStyle} />}
message="기술스택"
message="관련 태그"
color="text.alternative"
/>
<Stack spacing={'0.75rem'} py={1} direction={'row'} useFlexGap>
Expand Down
2 changes: 1 addition & 1 deletion src/components/tutorialContent/MainPageTutorial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const MainPageTutorial = () => {
<Content text={'필터를 통해 좀 더 자세한 결과를 볼 수 있습니다.'} />
<Content
text={
'사용하는 기술스택부터 목표 기간, 활동 방식과 지역을 선택해서 좀 더 맞는 프로젝트와 스터디를 찾아보세요!'
'사용하는 태그부터 목표 기간, 활동 방식과 지역을 선택해서 좀 더 맞는 프로젝트와 스터디를 찾아보세요!'
}
/>
<Content text={'검색을 한 뒤 필터를 적용할 수 있습니다.'} />
Expand Down
Loading