Fix uniqueId prefix coercion (#4619)

This commit is contained in:
Luiz Américo
2020-01-22 13:07:54 -08:00
committed by Michał Lipiński
parent 04ebca6c86
commit 3f585df05c
2 changed files with 1 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ function uniqueId(prefix='$lodash$') {
return `${id}`
}
return `${prefix + id}`
return `${prefix}${id}`
}
export default uniqueId