Skip to content

Commit

Permalink
[REVERT ME] Add QA-able search for special characters
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed Sep 9, 2023
1 parent c89a0f4 commit 7449686
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src-docs/src/views/tables/in_memory/in_memory_search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ const users: User[] = [];
for (let i = 0; i < 20; i++) {
users.push({
id: i + 1,
firstName: faker.name.firstName(),
firstName:
i % 2 === 0
? `!${faker.name.firstName()}?`
: `"@${faker.name.firstName()}"`,
lastName: faker.name.lastName(),
github: faker.internet.userName(),
dateOfBirth: faker.date.past(),
Expand Down Expand Up @@ -166,6 +169,7 @@ export default () => {
items={users}
columns={columns}
search={search}
searchPlainText
pagination={true}
sorting={true}
childrenBetween={
Expand Down

0 comments on commit 7449686

Please sign in to comment.