Use the shared field-hint registry when request forms need hover help text.
- Hover-text values live in:
src/features/operations/requestFieldHints.ts
Current example:
channel_ids:0 means all channels.
- Shared label component:
src/components/common/FieldLabel.tsx
- Forms should pass the hint with:
hint={requestFieldHints.some_key}
This keeps help text in one place instead of duplicating inline copy across forms.
- Use a hover hint for short operator guidance tied to a single field.
- Keep the text concise.
- Prefer the shared registry over hardcoded
titlestrings inside forms.
- For forms that accept
channel_ids, the default UI value is0. - In the UI,
0means all channels. - In the submitted payload,
0is converted to an empty array.
src/features/operations/requestFieldHints.tssrc/components/common/FieldLabel.tsx- the request form using the hint