Skip to content

Commit bf89f38

Browse files
authored
Small fix
From this issue: vault-development#137
1 parent 27d44f0 commit bf89f38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ class SvgUri extends Component{
151151

152152
// Remove empty strings from children array
153153
trimElementChilden(children) {
154-
for (child of children) {
154+
for (let child of children) {
155155
if (typeof child === 'string') {
156156
if (child.trim().length === 0)
157157
children.splice(children.indexOf(child), 1);

0 commit comments

Comments
 (0)