diff --git a/package.json b/package.json index 4886d4d1..d5a0f3e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "iSunFA", - "version": "0.8.2+20", + "version": "0.8.2+21", "private": false, "scripts": { "dev": "next dev", diff --git a/src/components/voucher/new_voucher_form.tsx b/src/components/voucher/new_voucher_form.tsx index eb6df175..a1a64174 100644 --- a/src/components/voucher/new_voucher_form.tsx +++ b/src/components/voucher/new_voucher_form.tsx @@ -109,7 +109,7 @@ const NewVoucherForm = () => {

{translateType(type)}

diff --git a/src/pages/users/accounting/add_new_voucher.tsx b/src/pages/users/accounting/add_new_voucher.tsx index 6b15cac7..6a683841 100644 --- a/src/pages/users/accounting/add_new_voucher.tsx +++ b/src/pages/users/accounting/add_new_voucher.tsx @@ -33,7 +33,7 @@ const AddNewVoucherPage = () => { This is header
This is sidebar
diff --git a/src/pages/users/accounting/voucher_list.tsx b/src/pages/users/accounting/voucher_list.tsx index 365b24e4..246afa63 100644 --- a/src/pages/users/accounting/voucher_list.tsx +++ b/src/pages/users/accounting/voucher_list.tsx @@ -1,3 +1,4 @@ +import React, { useState } from 'react'; import Head from 'next/head'; import { useTranslation } from 'next-i18next'; import { serverSideTranslations } from 'next-i18next/serverSideTranslations'; @@ -7,6 +8,8 @@ import VoucherListPageBody from '@/components/voucher/voucher_list_page_body'; const VoucherListPage = () => { const { t } = useTranslation('common'); + const [isSidebarOpen, setIsSidebarOpen] = useState(true); + return ( <> @@ -16,16 +19,29 @@ const VoucherListPage = () => { {t('journal:VOUCHER.VOUCHER_LIST_PAGE_TITLE')} - iSunFA -
+ + +
This is header
- -
+
This is sidebar
{/* Info: (20240920 - Julian) Body */} -
+
diff --git a/src/pages/users/asset/index.tsx b/src/pages/users/asset/index.tsx index 98058749..c8240ae6 100644 --- a/src/pages/users/asset/index.tsx +++ b/src/pages/users/asset/index.tsx @@ -1,3 +1,4 @@ +import React, { useState } from 'react'; import Head from 'next/head'; import { useTranslation } from 'next-i18next'; import { serverSideTranslations } from 'next-i18next/serverSideTranslations'; @@ -7,6 +8,8 @@ import AssetListPageBody from '@/components/asset/asset_list_page_body'; const AssetListPage = () => { const { t } = useTranslation('common'); + const [isSidebarOpen, setIsSidebarOpen] = useState(true); + return ( <> @@ -16,16 +19,29 @@ const AssetListPage = () => { {t('asset:ASSET.ASSET_LIST_PAGE_TITLE')} - iSunFA -
+ + +
This is header
- -
+
This is sidebar
{/* Info: (20240925 - Julian) Body */} -
+