|
|
@@ -10,6 +10,7 @@ import {
|
|
|
Select,
|
|
|
Skeleton,
|
|
|
Space,
|
|
|
+ Tag,
|
|
|
Tooltip,
|
|
|
Tree,
|
|
|
} from "antd";
|
|
|
@@ -450,7 +451,12 @@ const ChannelMy = ({
|
|
|
<Button type="link">
|
|
|
<Space>
|
|
|
<StudioName data={node.channel.studio} hideName />
|
|
|
- {node.channel.title}
|
|
|
+ <>{node.channel.title}</>
|
|
|
+ <Tag>
|
|
|
+ {intl.formatMessage({
|
|
|
+ id: `channel.type.${node.channel.type}.label`,
|
|
|
+ })}
|
|
|
+ </Tag>
|
|
|
</Space>
|
|
|
</Button>
|
|
|
</div>
|
|
|
@@ -471,6 +477,13 @@ const ChannelMy = ({
|
|
|
}),
|
|
|
icon: <CopyOutlined />,
|
|
|
},
|
|
|
+ {
|
|
|
+ key: "import",
|
|
|
+ label: intl.formatMessage({
|
|
|
+ id: "buttons.import",
|
|
|
+ }),
|
|
|
+ icon: <CopyOutlined />,
|
|
|
+ },
|
|
|
{
|
|
|
key: "statistic",
|
|
|
label: intl.formatMessage({
|