fix(ag-grid): register ValidationModule in ModuleRegistry to resolve AG Grid warning #239
Validators (Pushes and Pull Requests) / Core Validators & Database Setup (push) Failing after 19s
Validators (Pushes and Pull Requests) / Security & Secrets (push) Successful in 8s
Validators (Pushes and Pull Requests) / CI Workflow Lint (push) Failing after 8s
Validators (Pushes and Pull Requests) / UI & Storage Validation (push) Failing after 12s
Validators (Pushes and Pull Requests) / Database & Schema Validation (push) Successful in 12s
Validators (Pushes and Pull Requests) / WBS & Audit Validations (push) Has been skipped
Validators (Pushes and Pull Requests) / .NET Contracts (push) Has been skipped
Validators (Pushes and Pull Requests) / Calibration & Performance (push) Has been skipped
Validators (Pushes and Pull Requests) / Operational Report & Decision Packet (push) Has been skipped
Validators (Pushes and Pull Requests) / Notify PR Results (push) Has been skipped

This commit is contained in:
2026-07-25 20:38:45 +09:00
parent 716c1c1760
commit ea57315d8c
+2 -2
View File
@@ -9,9 +9,9 @@ import { vQuantKeyboardNav } from './directives/vQuantKeyboardNav'
import './assets/douzone.css'
import 'ag-grid-community/styles/ag-grid.css'
import 'ag-grid-community/styles/ag-theme-alpine.css'
import { ModuleRegistry, AllCommunityModule } from 'ag-grid-community'
import { ModuleRegistry, AllCommunityModule, ValidationModule } from 'ag-grid-community'
ModuleRegistry.registerModules([AllCommunityModule])
ModuleRegistry.registerModules([AllCommunityModule, ValidationModule])
const app = createApp(App)