* fix(oidc): Add logging to help debug missing OIDC button (Issue #1036)
When OIDC is configured but the login button doesn't appear, users
had no way to debug what was wrong. This adds comprehensive logging:
- Log when OIDC is disabled with helpful message
- Log when providers are successfully loaded
- Warn when numbered providers are skipped due to missing fields
- Error when single provider config is incomplete with specific missing fields
- Warn when OIDC is enabled but no valid providers found
This helps users quickly identify configuration issues like:
- Typos in environment variable names
- Missing required fields (issuer, clientId, clientSecret)
- Incorrect OIDC_ENABLED value
Fixes#1036
* fix(ui): Auto-focus project search field when opened (Issue #992)
When clicking on the project field in a task to add or change the project,
the search input field now automatically receives focus, eliminating the
need to manually click on it.
This improves the user experience by reducing friction in the project
assignment workflow.
Fixes#992