File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
conformance-search/src/components Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ function Social({ className }: { className?: string }) {
43
43
< div className = { `flex flex-row gap-4 text-xl text-neutral-500 ${ className } ` } >
44
44
< a
45
45
aria-label = "Check us out on GitHub"
46
- className = "inline-flex items-center transition-all duration-500 hover:brightness-125"
46
+ className = "inline-flex items-center transition-all duration-200 hover:brightness-125"
47
47
href = { meta . social . github }
48
48
rel = "noreferrer"
49
49
target = "_blank"
@@ -233,8 +233,8 @@ export default function NavigationBar() {
233
233
return (
234
234
< header className = "w-full bg-transparent text-neutral-800" >
235
235
< nav className = "flex w-full max-w-[88rem] flex-row items-stretch justify-between border-b-1 border-neutral-200 xs:px-4 md:px-8 xl:mx-auto xl:border-0" >
236
- < LinkWrapper to = "/" >
237
- < span className = "my-4 flex flex-row flex-wrap items-center text-lg font-medium leading-normal transition-all duration-200 hover:brightness-150 max-md:ml-3 xl:my-6" >
236
+ < LinkWrapper className = "transition-all duration-200 hover:brightness-150" to = "/" >
237
+ < span className = "my-4 flex flex-row flex-wrap items-center text-lg font-medium leading-normal max-md:ml-3 xl:my-6" >
238
238
< span className = "mr-1 whitespace-nowrap font-bold max-xs:text-sm" >
239
239
File Format
240
240
</ span >
Original file line number Diff line number Diff line change @@ -57,11 +57,14 @@ def test_variants(check):
57
57
if path == "file" or "*" in path :
58
58
continue
59
59
60
+ # We don't care about variant metadata so strip it
60
61
variant_file_map = files ["path_file_map" ][path ]
61
- variant_keys = set (variant_file_map .keys ())
62
+ variant_file_map = {
63
+ ":" .join (k .split (":" )[:2 ]): v for k , v in variant_file_map .items ()
64
+ }
62
65
63
- # We don't care about variant metadata so strip it
64
- variant_keys = set (":" . join ( k . split ( ":" )[: 2 ]) for k in variant_keys )
66
+ # Get variant keys
67
+ variant_keys = set (variant_file_map . keys () )
65
68
66
69
# Check if there is a *:* variant
67
70
if "*:*" in variant_keys :
You can’t perform that action at this time.
0 commit comments