Stars style fix

This commit is contained in:
Piotr Rogowski 2022-11-15 22:53:16 +01:00
parent 8dd443be17
commit 8a5a4ad596
No known key found for this signature in database
GPG Key ID: 4A842D702D9C6F8F
1 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,7 @@ import {
import { ColumnsType } from 'antd/lib/table'; import { ColumnsType } from 'antd/lib/table';
import { import {
CopyOutlined, CopyOutlined,
StarOutlined, StarFilled,
ArrowRightOutlined, ArrowRightOutlined,
EditOutlined, EditOutlined,
CheckCircleFilled, CheckCircleFilled,
@ -139,7 +139,7 @@ const Hub = () => {
)} )}
{(tune as any).authorUsername} {(tune as any).authorUsername}
</Space> </Space>
</Link>, {tune.updated}, {tune.stars} <StarOutlined /> </Link>, {tune.updated}, {tune.stars} <StarFilled />
</Text> </Text>
<Text>{tune.engineMake}, {tune.engineCode}, {tune.displacement}, {tune.cylindersCount} cylinders, {tune.aspiration}</Text> <Text>{tune.engineMake}, {tune.engineCode}, {tune.displacement}, {tune.cylindersCount} cylinders, {tune.aspiration}</Text>
<Text italic>{tune.signature}</Text> <Text italic>{tune.signature}</Text>
@ -222,9 +222,10 @@ const Hub = () => {
responsive: ['sm'], responsive: ['sm'],
}, },
{ {
title: <StarOutlined />, title: <StarFilled />,
dataIndex: 'stars', dataIndex: 'stars',
key: 'stars', key: 'stars',
width: 60,
responsive: ['sm'], responsive: ['sm'],
}, },
{ {