Skip to content

Commit

Permalink
fix: api请求节点post参数编辑渲染问题 --story=120891419 (#1450)
Browse files Browse the repository at this point in the history
* fix: api请求节点post参数编辑渲染问题 --story=120891419
# Reviewed, transaction id: 24694

* refactor: 更新版本日志 --story=120891419
  • Loading branch information
luofann authored Dec 13, 2024
1 parent bc0ab1f commit f07958c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 2 additions & 0 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changelog
## [Version: 2.7.3] - 2024-11-25
【Fix】API请求节点POST参数编辑渲染问题

## [Version: 2.7.2] - 2024-11-18
【新增】画布删除线条时增加弹窗提醒
Expand Down
3 changes: 3 additions & 0 deletions docs/RELEASE_EN.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [Version: 2.7.3] - 2024-11-25
【Fix】API request node POST parameter editing rendering issue.

## [Version: 2.7.2] - 2024-11-18
【Feature】Add a popup confirmation when deleting lines on the canvas.
【Improved】When selecting ‘All Systems’ in the API list, remove the options for creating new and importing APIs.
Expand Down
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 f07958c

Please sign in to comment.