Feature: Replace "(nepovinné)" Text with Star Symbol
Implementation Notes
In the main form, two labels contain the text "(nepovinné)" (optional) which takes up space. Replace this with a more concise * star symbol to indicate optional fields.
Key file to modify:
client/src/App.tsx
Specific locations:
Line ~497: "Na co dobrého? (nepovinné)" → Remove "(nepovinné)" and add * to the label
Line ~504: "V kolik hodin preferuješ odchod?" → Remove "(nepovinné)" if present and add * to the label
Approach:
Find both label strings in client/src/App.tsx
Remove the "(nepovinné)" suffix text
Add a * symbol to both labels to indicate they are optional
Optionally add a small footnote or tooltip explaining that * means optional
## Feature: Replace "(nepovinné)" Text with Star Symbol
### Implementation Notes
In the main form, two labels contain the text "(nepovinné)" (optional) which takes up space. Replace this with a more concise `*` star symbol to indicate optional fields.
**Key file to modify:**
- `client/src/App.tsx`
**Specific locations:**
- Line ~497: `"Na co dobrého? (nepovinné)"` → Remove "(nepovinné)" and add `*` to the label
- Line ~504: `"V kolik hodin preferuješ odchod?"` → Remove "(nepovinné)" if present and add `*` to the label
**Approach:**
1. Find both label strings in `client/src/App.tsx`
2. Remove the "(nepovinné)" suffix text
3. Add a `*` symbol to both labels to indicate they are optional
4. Optionally add a small footnote or tooltip explaining that `*` means optional
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Feature: Replace "(nepovinné)" Text with Star Symbol
Implementation Notes
In the main form, two labels contain the text "(nepovinné)" (optional) which takes up space. Replace this with a more concise
*star symbol to indicate optional fields.Key file to modify:
client/src/App.tsxSpecific locations:
"Na co dobrého? (nepovinné)"→ Remove "(nepovinné)" and add*to the label"V kolik hodin preferuješ odchod?"→ Remove "(nepovinné)" if present and add*to the labelApproach:
client/src/App.tsx*symbol to both labels to indicate they are optional*means optional