Skip to content

Commit 3cd6ecb

Browse files
committed
fix linter warning
1 parent d55b299 commit 3cd6ecb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/renderer/attribute/impl/length.cljs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,7 @@
6161
([el k f arg]
6262
(update-in el [:attrs k] utils.length/transform (fn [v] (max 0 (f v arg)))))
6363
([el k f arg & more]
64-
(update-in el [:attrs k] utils.length/transform (fn [v] (max 0 (apply f v arg more))))))
64+
(update-in el
65+
[:attrs k]
66+
utils.length/transform
67+
(fn [v] (max 0 (apply f v arg more))))))

0 commit comments

Comments
 (0)