|
@@ -167,7 +167,7 @@ const Cloud = ({ cloud, dispatch }) => {
|
|
|
}
|
|
}
|
|
|
return obj
|
|
return obj
|
|
|
}, {}),
|
|
}, {}),
|
|
|
- renderText: (_, record) => record.latestUsedName && <Tag color="purple">{record.latestUsedName}</Tag>
|
|
|
|
|
|
|
+ renderText: (_, record) => record.latestUsedName && <Tag>{record.latestUsedName}</Tag>
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
title: '地区',
|
|
title: '地区',
|
|
@@ -218,7 +218,7 @@ const Cloud = ({ cloud, dispatch }) => {
|
|
|
)
|
|
)
|
|
|
.map(item => {
|
|
.map(item => {
|
|
|
return (
|
|
return (
|
|
|
- <Tag color="purple" key={item.compilationID}>
|
|
|
|
|
|
|
+ <Tag key={item.compilationID}>
|
|
|
{memoRef.compilation?.find(i => i._id === item.compilationID)?.name}
|
|
{memoRef.compilation?.find(i => i._id === item.compilationID)?.name}
|
|
|
</Tag>
|
|
</Tag>
|
|
|
)
|
|
)
|