Skip to content

Commit

Permalink
fix(frontend): redis变更自定义方案规格问题修复 TencentBlueKing#7867
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 23423
  • Loading branch information
jinquantianxia committed Nov 11, 2024
1 parent 5a3833e commit 93d366b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
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, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, VNode, WritableComputedRef } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue'
import('vue')
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
v-model="modelValue.specId"
:biz-id="clusterInfo.bizId"
:cloud-id="clusterInfo.cloudId"
:cluster-type="clusterInfo.clusterType"
:machine-type="clusterInfo.machineType"
cluster-type="redis"
:machine-type="specClusterMachineMap[clusterInfo.clusterType]"
style="width: 314px" />
</DbFormItem>
<DbFormItem
Expand Down Expand Up @@ -73,6 +73,8 @@
import SpecSelector from '@views/db-manage/common/apply-items/SpecSelector.vue';
import { specClusterMachineMap } from '../const';
interface Props {
clusterInfo: {
clusterType: string;
Expand Down

0 comments on commit 93d366b

Please sign in to comment.