fix donasi

deksripsi:
- fix text editor di create & edit cerita penggalang
- tampilan khusus html di detail setatus
This commit is contained in:
2025-05-02 15:03:28 +08:00
parent cc3adc092c
commit d773a3f493
14 changed files with 161 additions and 48 deletions

View File

@@ -1,13 +1,13 @@
"use client";
import { ComponentGlobal_NotifikasiPeringatan } from "@/app_modules/_global/notif_global/notifikasi_peringatan";
import { Card, Center, Grid, Stack, Text, Title } from "@mantine/core";
import { useRouter } from "next/navigation";
import { MODEL_COLLABORATION } from "../../model/interface";
import { useState } from "react";
import { MainColor } from "@/app_modules/_global/color";
import { ComponentGlobal_CardLoadingOverlay } from "@/app_modules/_global/component";
import { Component_V3_GridDetailData } from "@/app_modules/_global/component/new/comp_V3_grid_detail_data";
import { MainColor } from "@/app_modules/_global/color";
import { ComponentGlobal_NotifikasiPeringatan } from "@/app_modules/_global/notif_global/notifikasi_peringatan";
import { Card, Center, Stack, Title } from "@mantine/core";
import { useRouter } from "next/navigation";
import { useState } from "react";
import { MODEL_COLLABORATION } from "../../model/interface";
export default function ComponentColab_CardSectionData({
colabId,

View File

@@ -3,7 +3,7 @@
import { Stack, Box, Center, Title, Grid, Text } from "@mantine/core";
import ComponentColab_AuthorNameOnHeader from "../header_author_name";
import { MODEL_COLLABORATION } from "../../model/interface";
import { Comp_V3_SetInnerHTML } from "@/app_modules/_global/component/new/comp_V3_set_html_with_stiker";
import { Comp_V3_SetInnerHTMLWithStiker } from "@/app_modules/_global/component/new/comp_V3_set_html_with_stiker";
import { Component_V3_GridDetailData } from "@/app_modules/_global/component/new/comp_V3_grid_detail_data";
export default function ComponentColab_DetailData({
@@ -25,11 +25,11 @@ export default function ComponentColab_DetailData({
},
{
title: "Tujuan Proyek",
value: <Comp_V3_SetInnerHTML props={data?.purpose} />,
value: <Comp_V3_SetInnerHTMLWithStiker props={data?.purpose} />,
},
{
title: "Keuntungan Proyek",
value: <Comp_V3_SetInnerHTML props={data?.benefit} />,
value: <Comp_V3_SetInnerHTMLWithStiker props={data?.benefit} />,
},
];