Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions inlong-dashboard/src/locales/cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,8 @@
"pages.ClusterTags.DelCluster": "解绑",
"pages.ClusterTags.DelClusterConfirm": "确定解绑吗?",
"pages.ClusterTags.DelClusterSuccess": "解绑成功",
"pages.ClusterTags.DelConfirm": "删除集群标签,会同时删除关联的集群,且需确保此标签没有被 InlongGroup 所使用",
"pages.ClusterTags.NameEditHelp": "修改集群标签,会同时修改关联的集群,且需确保此标签没有被 InlongGroup 所使用",
"pages.ClusterTags.DelConfirm": "删除集群标签,会将其从绑定了此标签的所有集群中解绑,且需确保此标签没有被 InlongGroup 所使用",
"pages.ClusterTags.NameEditHelp": "修改集群标签名称,会同时修改所有绑定了此标签的集群中的标签名,且需确保此标签没有被 InlongGroup 所使用",
"pages.Datasources.status.Success": "正常",
"pages.Datasources.status.Error": "失败",
"pages.Datasources.status.Deleted": "已删除",
Expand Down
4 changes: 2 additions & 2 deletions inlong-dashboard/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -439,8 +439,8 @@
"pages.ClusterTags.DelCluster": "Unbind",
"pages.ClusterTags.DelClusterConfirm": "Are you sure you want to unbind?",
"pages.ClusterTags.DelClusterSuccess": "Unbind successfully",
"pages.ClusterTags.DelConfirm": "Deleting a cluster label will delete the associated cluster at the same time, and make sure that this label is not used by InlongGroup",
"pages.ClusterTags.NameEditHelp": "Modifying a cluster label will delete the associated cluster at the same time, and make sure that this label is not used by InlongGroup",
"pages.ClusterTags.DelConfirm": "Deleting a cluster tag will unbind it from all clusters bound to this tag, and make sure this tag is not used by InlongGroup",
"pages.ClusterTags.NameEditHelp": "Modifying a cluster tag will also modify the tag name in all clusters bound to this tag, and make sure that this label is not used by InlongGroup",
"pages.Datasources.status.Success": "Success",
"pages.Datasources.status.Error": "Error",
"pages.Datasources.status.Deleted": "Deleted",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Comp = ({ inlongGroupId, readonly, mqType }: Props, ref) => {

const { data = realTimeValues, run: getList, mutate } = useRequest(
{
url: '/stream/listAll',
url: '/stream/list',
method: 'POST',
data: {
...options,
Expand Down
4 changes: 2 additions & 2 deletions inlong-dashboard/src/pages/ApprovalDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ const Comp: React.FC = () => {

const Form = useMemo(() => {
return {
NEW_GROUP_PROCESS: Access,
NEW_CONSUMPTION_PROCESS: Consume,
APPLY_GROUP_PROCESS: Access,
APPLY_CONSUMPTION_PROCESS: Consume,
}[processInfo?.name];
}, [processInfo]);

Expand Down