Skip to content

Commit

Permalink
fix: 修复边框判断bug
Browse files Browse the repository at this point in the history
  • Loading branch information
BoBoooooo committed Mar 1, 2021
1 parent 59937b4 commit 69482e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "element-pro-crud",
"version": "0.8.8-5",
"version": "0.8.8-6",
"author": "BoBo<[email protected]>",
"main": "lib/ProCrud.umd.min.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/component/form-designer/src/GenerateForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
:key="colIndex"
:span="col.span"
:style="{
'border': isNoBorder(col,item) ? 'none!important':'unset'
'border': isNoBorder(col,item) ? 'none!important':''
}">>
<!-- 遍历生成该列所有组件 -->
<template v-for="citem in col.list">
Expand Down

0 comments on commit 69482e8

Please sign in to comment.