@@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
||||||
|
|
||||||
|
## [1.2.62](https://github.com/bipproduction/hipmi/compare/v1.2.61...v1.2.62) (2025-02-25)
|
||||||
|
|
||||||
## [1.2.61](https://github.com/bipproduction/hipmi/compare/v1.2.60...v1.2.61) (2025-02-25)
|
## [1.2.61](https://github.com/bipproduction/hipmi/compare/v1.2.60...v1.2.61) (2025-02-25)
|
||||||
|
|
||||||
## [1.2.60](https://github.com/bipproduction/hipmi/compare/v1.2.59...v1.2.60) (2025-02-25)
|
## [1.2.60](https://github.com/bipproduction/hipmi/compare/v1.2.59...v1.2.60) (2025-02-25)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "hipmi",
|
"name": "hipmi",
|
||||||
"version": "1.2.61",
|
"version": "1.2.62",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"prisma": {
|
"prisma": {
|
||||||
|
|||||||
16
src/app/api/version/route.ts
Normal file
16
src/app/api/version/route.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
import { NextResponse } from "next/server";
|
||||||
|
import packageVersion from "../../../../package.json";
|
||||||
|
|
||||||
|
export async function GET(request: Request) {
|
||||||
|
|
||||||
|
const version = packageVersion.version
|
||||||
|
|
||||||
|
return NextResponse.json(
|
||||||
|
{
|
||||||
|
success: true,
|
||||||
|
message: "Success get version",
|
||||||
|
data: version,
|
||||||
|
},
|
||||||
|
{ status: 200 }
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -81,7 +81,7 @@ export default function HomeViewNew() {
|
|||||||
<UIGlobal_LayoutHeaderTamplate
|
<UIGlobal_LayoutHeaderTamplate
|
||||||
title="HIPMI"
|
title="HIPMI"
|
||||||
customButtonLeft={
|
customButtonLeft={
|
||||||
!dataUser && !countNtf ? (
|
!dataUser || !countNtf ? (
|
||||||
<ActionIcon radius={"xl"} variant={"transparent"}>
|
<ActionIcon radius={"xl"} variant={"transparent"}>
|
||||||
<IconUserSearch color={MainColor.white} />
|
<IconUserSearch color={MainColor.white} />
|
||||||
</ActionIcon>
|
</ActionIcon>
|
||||||
@@ -108,7 +108,7 @@ export default function HomeViewNew() {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
customButtonRight={
|
customButtonRight={
|
||||||
!dataUser && !countNtf ? (
|
!dataUser || !countNtf ? (
|
||||||
<ActionIcon radius={"xl"} variant={"transparent"}>
|
<ActionIcon radius={"xl"} variant={"transparent"}>
|
||||||
<IconBell color={MainColor.white} />
|
<IconBell color={MainColor.white} />
|
||||||
</ActionIcon>
|
</ActionIcon>
|
||||||
|
|||||||
@@ -118,15 +118,18 @@ export default function ComponentPortofolio_ButtonMoreNew({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{userLoginId === authorId ? (
|
{
|
||||||
<ActionIcon variant="transparent" onClick={() => setOpenDrawer(true)}>
|
userLoginId === authorId && (
|
||||||
<IconDotsVertical color={MainColor.white} />
|
<ActionIcon variant="transparent" onClick={() => setOpenDrawer(true)}>
|
||||||
</ActionIcon>
|
<IconDotsVertical color={MainColor.white} />
|
||||||
) : (
|
</ActionIcon>
|
||||||
<ActionIcon disabled variant="transparent">
|
)
|
||||||
<CustomSkeleton h={20} w={20} radius={"100%"} />
|
// : (
|
||||||
</ActionIcon>
|
// <ActionIcon disabled variant="transparent">
|
||||||
)}
|
// <CustomSkeleton h={20} w={20} radius={"100%"} />
|
||||||
|
// </ActionIcon>
|
||||||
|
// )
|
||||||
|
}
|
||||||
|
|
||||||
<UIGlobal_Drawer
|
<UIGlobal_Drawer
|
||||||
opened={openDrawer}
|
opened={openDrawer}
|
||||||
|
|||||||
@@ -217,7 +217,7 @@
|
|||||||
>Scan QrCode dan join melalui halaman konfirmasi</label
|
>Scan QrCode dan join melalui halaman konfirmasi</label
|
||||||
>
|
>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<!-- <li>
|
||||||
<input type="checkbox" id="buat-event-hari-ini" />
|
<input type="checkbox" id="buat-event-hari-ini" />
|
||||||
<label for="buat-event-hari-ini"
|
<label for="buat-event-hari-ini"
|
||||||
>Buat event baru (tanggal dan jam hari ini)</label
|
>Buat event baru (tanggal dan jam hari ini)</label
|
||||||
@@ -232,7 +232,7 @@
|
|||||||
<label for="scan-qr-konfirmasi"
|
<label for="scan-qr-konfirmasi"
|
||||||
>Scan QrCode dan join melalui halaman konfirmasi</label
|
>Scan QrCode dan join melalui halaman konfirmasi</label
|
||||||
>
|
>
|
||||||
</li>
|
</li> -->
|
||||||
<li>
|
<li>
|
||||||
<input type="checkbox" id="cek-kontribusi-user" />
|
<input type="checkbox" id="cek-kontribusi-user" />
|
||||||
<label for="cek-kontribusi-user">Cek kontribusi user</label>
|
<label for="cek-kontribusi-user">Cek kontribusi user</label>
|
||||||
|
|||||||
Reference in New Issue
Block a user