Skip to content

Commit b51f672

Browse files
committed
fix: crud.getAttr renamed to crud.getAttributes
1 parent ffeeef3 commit b51f672

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/setValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const setValue = (el, value) => {
2626
let valueType = el.getAttribute('value-type');
2727

2828
if (el.tagName == 'INPUT' || el.tagName == 'TEXTAREA' || el.tagName == 'SELECT') {
29-
const {isCrdt} = crud.getAttr(el);
29+
const {isCrdt} = crud.getAttributes(el);
3030
if (isCrdt == "true" || el.type === 'file') return;
3131

3232
if (el.type == 'checkbox') {

0 commit comments

Comments
 (0)