Skip to content

Commit

Permalink
fix(frontend): 修复mongodb提单参数和分片显示问题 #8305
Browse files Browse the repository at this point in the history
  • Loading branch information
3octaves authored and iSecloud committed Dec 3, 2024
1 parent f5ccc7b commit acc346b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@
...details,
spec_id: details.resource_spec.spec_id,
resource_spec: {
mongodb: {
mongo_machine_set: {
count: details.node_count,
spec_id: details.resource_spec.spec_id,
...specRef.value!.getData(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class="mb-4"
:data="item.instanceList">
<template #prefix>
<span>{{ item.shardName }} : /</span>
<span>{{ item.shardName }}:/</span>
</template>
</RenderRow>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
v-for="(item, index) in data"
:key="index"
class="render-row-item">
<span v-if="index !== 0">,</span>
{{ item }}
<span v-if="index !== 0">,</span>{{ item }}
</span>
</p>
<p class="visible-content">
Expand All @@ -35,8 +34,7 @@
v-for="(item, index) in visibleData"
:key="index"
class="visible-item">
<span v-if="index !== 0">,</span>
{{ item }}
<span v-if="index !== 0">,</span>{{ item }}
</span>
<BkPopover
v-if="overflowData.length > 0"
Expand Down

0 comments on commit acc346b

Please sign in to comment.