feat: Complete Admin Phase 6 Job screens migration

- Migrate 4 admin job screens to OS_Wrapper (dashboard, list, detail, form)
- Add enableKeyboardHandling to reject-input form screen
- Update TASK-005 with Admin Phase 6 completion status
- Total: 132 files migrated (~79% complete)

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
2026-04-14 12:24:58 +08:00
parent eb64c30d49
commit 0823a1c26a
6 changed files with 57 additions and 40 deletions

View File

@@ -2,9 +2,8 @@
import {
AlertDefaultSystem,
BoxButtonOnFooter,
NewWrapper,
OS_Wrapper,
TextAreaCustom,
ViewWrapper,
} from "@/components";
import AdminBackButtonAntTitle from "@/components/_ShareComponent/Admin/BackButtonAntTitle";
import AdminButtonReject from "@/components/_ShareComponent/Admin/ButtonReject";
@@ -101,7 +100,9 @@ export default function AdminJobRejectInput() {
return (
<>
<NewWrapper
<OS_Wrapper
enableKeyboardHandling
contentPaddingBottom={250}
footerComponent={buttonSubmit}
headerComponent={<AdminBackButtonAntTitle title="Penolakan Job" />}
>
@@ -113,7 +114,7 @@ export default function AdminJobRejectInput() {
showCount
maxLength={1000}
/>
</NewWrapper>
</OS_Wrapper>
</>
);
}