+ |
+
+ }
+ onClick={() => {
+ setLoadingDetail(e.id);
+ setTimeout(() => {
+ router.push(
+ RouterAdminAppInformation.detailSticker({ id: e.id })
+ );
+ setLoadingDetail(null);
+ }, 1000);
+ }}
+ >
+ Detail
+
+
+ |
+ {/*
+
+ {
+ setIsActivation(true);
+ setUpdateStatus({
+ id: e?.id,
+ active: val.currentTarget.checked as any,
+ });
+ }}
+ />
+
+ | */}
+
+
+
+
+
+
+ |
+
+
+
+
+ {e.MasterEmotions.map((e) => (
+ {e.value}
+ ))}
+
+
+
+ |
+
+ ));
+};
diff --git a/src/lib/router_admin/router_app_information.ts b/src/lib/router_admin/router_app_information.ts
index 42308556..9218a74f 100644
--- a/src/lib/router_admin/router_app_information.ts
+++ b/src/lib/router_admin/router_app_information.ts
@@ -6,4 +6,5 @@ export const RouterAdminAppInformation = {
// Sticker
sticker: "/dev/admin/app-information/sticker",
createSticker: "/dev/admin/app-information/sticker/create",
+ detailSticker: ({ id }: { id: string }) => `/dev/admin/app-information/sticker/${id}`,
};