Skip to content

Commit 500b254

Browse files
authored
Merge pull request #85 from mikeethedude:extended-tag-order
fix(#84): order of properties
2 parents d52da53 + da25a50 commit 500b254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/ExtendedTags.astro

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ type Link = HTMLAttributes<"link">;
1010
{
1111
props.extend.meta?.map(({ content, httpEquiv, media, name, property }) => (
1212
<meta
13+
name={name}
14+
property={property}
1315
content={content}
1416
http-equiv={httpEquiv}
1517
media={media}
16-
name={name}
17-
property={property}
1818
/>
1919
))
2020
}

0 commit comments

Comments
 (0)