Skip to content

Commit

Permalink
Hotfix/#71/jaeguk (#83)
Browse files Browse the repository at this point in the history
* fix: refresh토큰 만료시간 6시간으로 조정

* feat: 마일리지 관련 팁 데이터 변경

* fix: 회원가입 완료시 confirm이 아닌 alert로 알림

* fix: 내 글 목록에서 글쓰기 버튼시 Not Found로 가는 버그 해결

* style: MapCard 컴포넌트 스타일링 변경

* feat: 기업회원 회원가입 추가

* feat: 사업자 등록번호 key registNum으로 통일

* chore: 불필요한 import 제거

* feat: 헤더 NavBar 클릭 시 대표 페이지로 이동

* chore: D-day 표시에 D- 빠진 것 추가

* chore: confrim 메시지 출력 후 취소시 뒤로가기

* style: 게시물 목록 컴포넌트 width 고정

* style: 게시물 Item 레이아웃 조정

* style: 게시물 Item 등록날짜 태그 width 변경

* fix: 게시물 상세 페이지에서 데이터 로드되지 않으면 레이아웃 보이지 않게

* fix: 관리자는 좋아요 버튼 비활성화

* fix: 401에러 반환시 처리하는 로직 변경

* fix: 좋아요 버튼 클릭시 관리자인지 확인

* fix: 관리자 좋아요 버튼 비활성화

* fix: 페이지바 끝페이지 이동 버튼 활성화

* feat: 지도에 검색 기능 추가

* chore: 지도 중심좌표 변경

* style: 게시글 상세 페이지 module.css 변경
  • Loading branch information
jk6722 authored Nov 23, 2023
1 parent 659d54c commit cba0a43
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 19 deletions.
1 change: 1 addition & 0 deletions src/pages/DetailPosting/PostingBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Attatchment from './Attatchment';
import Posting from './Posting';
import { PostingDataType } from '@/types';
import PostingNav from './PostingNav';

const PostingBox: React.FC<{
id: number;
postingData: PostingDataType;
Expand Down
9 changes: 5 additions & 4 deletions src/pages/DetailPosting/index.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { useEffect, useState } from 'react';
import { useParams } from 'react-router-dom';
import { useQuery } from 'react-query';
import styled from 'styled-components';

import PostingBox from './PostingBox';
import OtherPostings from './OtherPostings';
import { useEffect, useState } from 'react';
import { PostingDataType } from '@/types';
import { useParams } from 'react-router-dom';
import { useQuery } from 'react-query';
import { fetchPostingDetail } from '@/apis/posting';
import Loading from '@/components/Loading/Loading';

Expand Down Expand Up @@ -36,7 +37,7 @@ const DetailPosting: React.FC<Props> = ({ title }) => {
useEffect(() => {
window.scrollTo({ top: 0, behavior: 'smooth' });
}, []);

if (isLoading) return <Loading />;

const postingData: PostingDataType = data?.data?.result;
Expand Down
28 changes: 14 additions & 14 deletions src/pages/DetailPosting/styles/posting.module.css
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
.ql-body h1 {
h1 {
font-size: 2em;
}
.ql-body h2 {
h2 {
font-size: 1.5em;
}
.ql-body h3 {
h3 {
font-size: 1.17em;
}
.ql-body h4 {
h4 {
font-size: 1em;
}
.ql-body h5 {
h5 {
font-size: 0.83em;
}
.ql-body h6 {
h6 {
font-size: 0.67em;
}
.ql-body a {
u {
text-decoration: underline;
}

.ql-body strong {
p {
font-size: 20px;
}
strong {
font-weight: bold;
}
.ql-body em {
em {
font-style: italic;
}
.ql-body u {
text-decoration: underline;
}
.ql-body s {

s {
text-decoration: line-through;
}
2 changes: 1 addition & 1 deletion src/pages/map/Map.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const MapPage = () => {
</SearchBarWrapper>

<Map
center={{ lat: 36.58775, lng: 127.968238 }}
center={{ lat: 35.58775, lng: 127.968238 }}
style={{ width: '100%', height: '133.3333vh', zoom: '1.33333' }}
level={12}
>
Expand Down

0 comments on commit cba0a43

Please sign in to comment.