Skip to content

Commit

Permalink
fix(frontend): 修复数据同步再次提单包含key、排除key被合并问题 #8214
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 24957
  • Loading branch information
JustaCattt authored and hLinx committed Nov 27, 2024
1 parent 93cce02 commit e77f19e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export function generateRedisDataCopyCloneData(ticketData: TicketModel<RedisData
clusterType: item.src_cluster_type,
targetCluster: clusters[item.dst_cluster].immute_domain,
targetClusterId: item.dst_cluster,
includeKey: item.key_white_regex ? item.key_white_regex.split(',') : [],
excludeKey: item.key_black_regex ? item.key_black_regex.split(',') : [],
includeKey: item.key_white_regex ? item.key_white_regex.split('\n') : [],
excludeKey: item.key_black_regex ? item.key_black_regex.split('\n') : [],
targetBusines: item.dst_bk_biz_id,
password: item.src_cluster_password,
}));
Expand Down
2 changes: 1 addition & 1 deletion dbm-ui/frontend/src/types/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
import('vue')
}

0 comments on commit e77f19e

Please sign in to comment.