mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
Fix Compile Error (#2302)
This commit is contained in:
@@ -495,7 +495,7 @@ fun ElementScope<SVGElement>.Polygon(
|
||||
TagElement(
|
||||
elementBuilder = Polygon,
|
||||
applyAttrs = {
|
||||
points(points)
|
||||
points(points = points)
|
||||
attrs?.invoke(this)
|
||||
},
|
||||
content = content
|
||||
@@ -512,7 +512,7 @@ fun ElementScope<SVGElement>.Polyline(
|
||||
TagElement(
|
||||
elementBuilder = Polyline,
|
||||
applyAttrs = {
|
||||
points(points)
|
||||
points(points = points)
|
||||
attrs?.invoke(this)
|
||||
},
|
||||
content = content
|
||||
|
||||
Reference in New Issue
Block a user