Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
zakaryan2004 authored Aug 20, 2022
2 parents 0aa391d + 3e871fa commit 8838630
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-sonarjs": "^0.15.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
Expand Down
4 changes: 2 additions & 2 deletions website/demos/AllFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,12 @@ function createRows(): Row[] {
title: faker.name.prefix(),
firstName: faker.name.firstName(),
lastName: faker.name.lastName(),
street: faker.address.streetName(),
street: faker.address.street(),
zipCode: faker.address.zipCode(),
date: faker.date.past().toLocaleDateString(),
bs: faker.company.bs(),
catchPhrase: faker.company.catchPhrase(),
companyName: faker.company.companyName(),
companyName: faker.company.name(),
words: faker.lorem.words(),
sentence: faker.lorem.sentence()
});
Expand Down
4 changes: 2 additions & 2 deletions website/demos/CommonFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -256,11 +256,11 @@ function createRows(): readonly Row[] {
rows.push({
id: i,
title: `Task #${i + 1}`,
client: faker.company.companyName(),
client: faker.company.name(),
area: faker.name.jobArea(),
country: faker.address.country(),
contact: faker.internet.exampleEmail(),
assignee: faker.name.findName(),
assignee: faker.name.fullName(),
progress: Math.random() * 100,
startTimestamp: now - Math.round(Math.random() * 1e10),
endTimestamp: now + Math.round(Math.random() * 1e10),
Expand Down
2 changes: 1 addition & 1 deletion website/demos/Grouping.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function createRows(): readonly Row[] {
year: 2015 + faker.datatype.number(3),
country: faker.address.country(),
sport: sports[faker.datatype.number(sports.length - 1)],
athlete: faker.name.findName(),
athlete: faker.name.fullName(),
gold: faker.datatype.number(5),
silver: faker.datatype.number(5),
bronze: faker.datatype.number(5)
Expand Down
2 changes: 1 addition & 1 deletion website/demos/HeaderFilters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ function createRows() {
complete: Math.min(100, Math.round(Math.random() * 110)),
priority: ['Critical', 'High', 'Medium', 'Low'][Math.floor(Math.random() * 4)],
issueType: ['Bug', 'Improvement', 'Epic', 'Story'][Math.floor(Math.random() * 4)],
developer: faker.name.findName()
developer: faker.name.fullName()
});
}
return rows;
Expand Down

0 comments on commit 8838630

Please sign in to comment.