fix(ui): fix placeholders for consistency (#1949)

This commit is contained in:
Delirium 2024-03-12 16:59:28 +01:00 committed by GitHub
parent 89d501edb5
commit 9e7f1971dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ function FFlagsSearch() {
value={query}
name="flagsSearch"
className="bg-white p-2 border border-borderColor-gray-light-shade rounded w-full pl-10"
placeholder="Search by key"
placeholder="Filter by key"
onChange={write}
/>
</div>

View file

@ -33,7 +33,7 @@ function LiveTestsModal({ testId, closeModal }: { testId: string; closeModal: ()
<div className={'w-3/4 font-semibold text-xl'}>Live Participants</div>
<Input.Search
allowClear
placeholder="Search by participant ID or name"
placeholder="Filter by participant ID or name"
onChange={(e) => setUserId(e.target.value)}
onSearch={() => refreshData(page)}
/>