Commit 202aa42b8d5a94e84ad386bcf7feab96926c70dd
1 parent
8d185bb5
fix(table): editable cell display with validation
修复带验证的可编辑表格的组件意外失焦的问题 fixed: #953
Showing
1 changed file
with
1 additions
and
1 deletions
src/components/Table/src/components/editable/CellComponent.ts
... | ... | @@ -19,7 +19,7 @@ export const CellComponent: FunctionalComponent = ( |
19 | 19 | const Comp = componentMap.get(component) as typeof defineComponent; |
20 | 20 | |
21 | 21 | const DefaultComp = h(Comp, attrs); |
22 | - if (!rule || !popoverVisible) { | |
22 | + if (!rule) { | |
23 | 23 | return DefaultComp; |
24 | 24 | } |
25 | 25 | return h( | ... | ... |