Skip to content

Commit cb0501f

Browse files
committed
Fix for undefined mixinValue
1 parent 073cd89 commit cb0501f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/themr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ export function themeable(original = {}, mixin) {
179179
//merging reducer
180180
(result, key) => {
181181
const originalValue = original[key] || ''
182-
const mixinValue = mixin[key]
182+
const mixinValue = mixin[key] || ''
183183

184184
let newValue
185185

0 commit comments

Comments
 (0)