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 049630e commit 0930ebeCopy full SHA for 0930ebe
packages/gui/src/components/schemas/grid.tsx
@@ -29,7 +29,7 @@ const trackSize = joinSchemas([
29
functionSchema('fit-content', lengthPercentage()),
30
])
31
32
-const trackCount = joinSchemas([
+const repeatTrackCount = joinSchemas([
33
integer({ defaultValue: 3 }),
34
keyword(['auto-fit', 'auto-fill']),
35
@@ -41,7 +41,7 @@ const trackList = joinSchemas(
41
'repeat',
42
objectSchema({
43
fields: {
44
- count: trackCount,
+ count: repeatTrackCount,
45
trackList: listSchema({ itemSchema: trackSize, separator: ' ' }),
46
},
47
separator: ', ',
0 commit comments