diff --git a/front/core/components/td-editable/index.js b/front/core/components/td-editable/index.js index 502a5e87b..780e6160c 100644 --- a/front/core/components/td-editable/index.js +++ b/front/core/components/td-editable/index.js @@ -11,11 +11,8 @@ export default class Controller extends Component { element.tabIndex = 0; element.addEventListener('focus', () => { - if (this.field || this.disabled) { - console.log(element.style.cursor); - // element.style.cursor = 'none!important'; - return; - } + if (this.field || this.disabled) return; + $transclude((tClone, tScope) => { this.field = tClone; this.tScope = tScope;