Skip to content

Commit bacf216

Browse files
a20185liximomo
authored andcommitted
fix(src/install.ts): fix typo
1 parent db81a77 commit bacf216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function mergeData(to: AnyObject, from?: AnyObject): Object {
2626
} else if (
2727
toVal !== fromVal &&
2828
(isPlainObject(toVal) && !isRef(toVal)) &&
29-
(isPlainObject(fromVal) && !isRef(toVal))
29+
(isPlainObject(fromVal) && !isRef(fromVal))
3030
) {
3131
mergeData(toVal, fromVal);
3232
}

0 commit comments

Comments
 (0)