Commit Graph
1 Commits
Author SHA1 Message Date
robot 210da72e03 fix(frontend): add missing 'new' to EventEmitter instantiations
CI Pipeline / backend-test (push) Successful in 4m24s
CI Pipeline / frontend-test (push) Successful in 28s
CI Pipeline / frontend-build (push) Successful in 31s
CI Pipeline / backend-lint (push) Successful in 10s
CI Pipeline / backend-test (pull_request) Successful in 4m18s
CI Pipeline / frontend-test (pull_request) Successful in 26s
CI Pipeline / frontend-build (pull_request) Successful in 32s
CI Pipeline / backend-lint (pull_request) Successful in 9s
CI Pipeline / quality-gate (push) Successful in 2s
CI Pipeline / quality-gate (pull_request) Successful in 2s
The Angular production build was failing with TS2348 errors because
EventEmitter<void>() was used without the 'new' keyword. This is not
valid TypeScript — EventEmitter is a constructor class, not a callable
value.

Fixes:
- src/app/admin/admin-users-tab.component.ts: added 'new' to saved and
  closed EventEmitter properties
2026-07-31 05:39:04 +00:00