Skip to content

Commit

Permalink
fix: api请求节点post参数编辑渲染问题 --story=120891419
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 24694
  • Loading branch information
luofann committed Nov 25, 2024
1 parent 79d8376 commit 0c2f411
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
</bk-input>
</template>
<template v-if="props.row.type === 'boolean'">
<bk-radio-group v-model="props.row.value">
<bk-radio :value="trueSatatus">true</bk-radio>
<bk-radio :value="falseSatatus">false</bk-radio>
<bk-radio-group v-model="props.row.value" class="bool-radios">
<bk-radio :value="true">true</bk-radio>
<bk-radio :value="false">false</bk-radio>
</bk-radio-group>
</template>
</div>
Expand Down Expand Up @@ -412,4 +412,9 @@
}
}
}
.bool-radios {
.bk-form-radio {
margin-right: 8px;
}
}
</style>

0 comments on commit 0c2f411

Please sign in to comment.