We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0e95c0 commit a1be1ecCopy full SHA for a1be1ec
react-manifest-example/host/src/pages/Home.tsx
@@ -35,7 +35,7 @@ const columns: TableProps<DataType>['columns'] = [
35
<>
36
{tags.map((tag) => {
37
let color = tag.length > 5 ? 'geekblue' : 'green';
38
- if (tag === 'loser') {
+ if (tag === 'fail') {
39
color = 'volcano';
40
}
41
return (
@@ -72,7 +72,7 @@ const data: DataType[] = [
72
name: 'Jim Green',
73
age: 42,
74
address: 'London No. 1 Lake Park',
75
- tags: ['loser'],
+ tags: ['fail'],
76
},
77
{
78
key: '3',
@@ -85,4 +85,4 @@ const data: DataType[] = [
85
86
const Home: React.FC = () => <Table columns={columns} dataSource={data} />;
87
88
-export default Home;
+export default Home;
0 commit comments