fix: 在description组件中json预览样式异常

This commit is contained in:
dap 2024-12-05 16:03:35 +08:00
parent e2b91f88ab
commit 4df62b563e
2 changed files with 10 additions and 0 deletions

View File

@ -10,6 +10,10 @@
- 角色管理 优化Drawer布局
- unplugin-vue-components插件(默认未开启) 需要排除Button组件 全局已经默认导入了
**BUG FIXES**
- 操作日志详情 在description组件中json预览样式异常
# 1.1.2
**Features**

View File

@ -30,3 +30,9 @@ function handleOpenChange(open: boolean) {
<Description @register="registerDescription" />
</BasicDrawer>
</template>
<style lang="scss" scoped>
.ant-descriptions :deep(.ant-descriptions-item-content) {
word-break: normal;
}
</style>