We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d55b299 commit 3cd6ecbCopy full SHA for 3cd6ecb
src/renderer/attribute/impl/length.cljs
@@ -61,4 +61,7 @@
61
([el k f arg]
62
(update-in el [:attrs k] utils.length/transform (fn [v] (max 0 (f v arg)))))
63
([el k f arg & more]
64
- (update-in el [:attrs k] utils.length/transform (fn [v] (max 0 (apply f v arg more))))))
+ (update-in el
65
+ [:attrs k]
66
+ utils.length/transform
67
+ (fn [v] (max 0 (apply f v arg more))))))
0 commit comments