File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
packages/vue/src/components/FInteractiveTable Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,6 @@ export default [
148148 "unicorn/prefer-dom-node-remove" : "off" ,
149149 "unicorn/prefer-dom-node-text-content" : "off" ,
150150 "unicorn/prefer-number-properties" : "off" ,
151- "unicorn/prefer-prototype-methods" : "off" ,
152151 "unicorn/prefer-query-selector" : "off" ,
153152 "unicorn/prefer-set-has" : "off" ,
154153 "unicorn/prefer-string-replace-all" : "off" ,
Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ watch(
349349);
350350
351351function updateTr(tbodyElement : HTMLElement ): void {
352- trAll .value = [] .slice .call (tbodyElement .children ) as HTMLElement [];
352+ trAll .value = Array . prototype .slice .call (tbodyElement .children ) as HTMLElement [];
353353 const trInteractableElements = trAll .value .filter ((tr ) => {
354354 return tr .tabIndex === 0 ;
355355 });
You can’t perform that action at this time.
0 commit comments