forked from Transparency/kgroad-frontend2
fix dates of news
This commit is contained in:
parent
d1440f3907
commit
ea58e4f2d1
@ -7,16 +7,10 @@ import message from "./icons/message.svg";
|
|||||||
import calendar from "./icons/calendar.svg";
|
import calendar from "./icons/calendar.svg";
|
||||||
import ReviewSection from "@/widgets/ReviewSection/ReviewSection";
|
import ReviewSection from "@/widgets/ReviewSection/ReviewSection";
|
||||||
|
|
||||||
const NewsDetails = async ({
|
const NewsDetails = async ({ params }: { params: { id: string } }) => {
|
||||||
params,
|
|
||||||
}: {
|
|
||||||
params: { id: string };
|
|
||||||
}) => {
|
|
||||||
const getNewsById = async () => {
|
const getNewsById = async () => {
|
||||||
const response = await apiInstance.get<INews>(
|
const response = await apiInstance.get<INews>(`/news/${params.id}/`);
|
||||||
`/news/${params.id}/`
|
console.log(response);
|
||||||
);
|
|
||||||
|
|
||||||
return response.data;
|
return response.data;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -48,9 +42,9 @@ const NewsDetails = async ({
|
|||||||
<Image src={calendar} alt="Calendar Icon" />
|
<Image src={calendar} alt="Calendar Icon" />
|
||||||
<p>
|
<p>
|
||||||
{months[data.created_at.slice(5, 7)]}{" "}
|
{months[data.created_at.slice(5, 7)]}{" "}
|
||||||
{data.created_at.slice(5, 7).slice(0, 1) === "0"
|
{data.created_at.slice(8, 10) === "0"
|
||||||
? data.created_at.slice(6, 7)
|
? data.created_at.slice(9, 10)
|
||||||
: data.created_at.slice(5, 7)}
|
: data.created_at.slice(8, 10)}
|
||||||
, {data.created_at.slice(0, 4)}
|
, {data.created_at.slice(0, 4)}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user