Skip to content

Commit

Permalink
fix(table): editable cell display with validation
Browse files Browse the repository at this point in the history
修复带验证的可编辑表格的组件意外失焦的问题

fixed: #953
  • Loading branch information
mynetfan committed Jul 22, 2021
1 parent 8d185bb commit 202aa42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const CellComponent: FunctionalComponent = (
const Comp = componentMap.get(component) as typeof defineComponent;

const DefaultComp = h(Comp, attrs);
if (!rule || !popoverVisible) {
if (!rule) {
return DefaultComp;
}
return h(
Expand Down

0 comments on commit 202aa42

Please sign in to comment.