Add private notes field to task modal 🗒️
File: client/src/components/Task/TaskModal.jsx
Description is public but sometimes you need
personal notes on a task 💀 fr!!
Fix: add a separate notes textarea:
<textarea
placeholder="Private notes (only visible to you)"
value={form.notes}
onChange={(e) => setForm({...form, notes: e.target.value})}
rows={2}
className="w-full bg-[#0f0f10] border border-dashed border-[#2a2a2f] rounded-lg px-3 py-2 text-sm text-[#888] placeholder-[#444] focus:outline-none focus:border-purple-500 resize-none"
/>
Add notes field to Task model too:
notes: { type: String, default: '' }
~8 lines across 2 files!
Dashed border makes it look "private" ✨
Add private notes field to task modal 🗒️
File: client/src/components/Task/TaskModal.jsx
Description is public but sometimes you need
personal notes on a task 💀 fr!!
Fix: add a separate notes textarea:
<textarea placeholder="Private notes (only visible to you)" value={form.notes} onChange={(e) => setForm({...form, notes: e.target.value})} rows={2} className="w-full bg-[#0f0f10] border border-dashed border-[#2a2a2f] rounded-lg px-3 py-2 text-sm text-[#888] placeholder-[#444] focus:outline-none focus:border-purple-500 resize-none" /> Add notes field to Task model too: notes: { type: String, default: '' } ~8 lines across 2 files! Dashed border makes it look "private" ✨