feat: update search placeholder to reflect name and description filtering

This commit is contained in:
Yashwin 2026-05-06 09:37:56 +05:30
parent fa3cf2c95f
commit eaf0568a64

View File

@ -308,7 +308,7 @@ const PromptManagement = (): ReactElement => {
type="text" type="text"
value={search} value={search}
onChange={(e) => setSearch(e.target.value)} onChange={(e) => setSearch(e.target.value)}
placeholder="Search prompts..." placeholder="Search by name or description..."
className="w-full pl-9 pr-4 py-2 bg-white border border-[rgba(0,0,0,0.08)] rounded-lg text-sm transition-all focus:outline-none focus:ring-2 focus:ring-[#112868]/10 focus:border-[#112868]" className="w-full pl-9 pr-4 py-2 bg-white border border-[rgba(0,0,0,0.08)] rounded-lg text-sm transition-all focus:outline-none focus:ring-2 focus:ring-[#112868]/10 focus:border-[#112868]"
/> />
</div> </div>