Skip to content

Commit 38604b1

Browse files
committed
Disable broken background plugin because broken in our setup
1 parent 92753cd commit 38604b1

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/getStory.tsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,16 @@ export function getStoryFactory<Props extends Record<string, any>>(params: {
134134
...(description === undefined ? [] : [description])
135135
].join(" \n")
136136
}
137-
}
137+
},
138+
"viewMode": "docs",
139+
"backgrounds": { "disable": true }
138140
},
139141
"argTypes": {
140142
"darkMode": {
141143
"table": {
142144
"disable": disabledProps.includes("darkMode")
143-
}
145+
},
146+
"description": "Global color scheme enabled, light or dark"
144147
},
145148
"containerWidth": {
146149
"control": {
@@ -151,7 +154,8 @@ export function getStoryFactory<Props extends Record<string, any>>(params: {
151154
},
152155
"table": {
153156
"disable": disabledProps.includes("containerWidth")
154-
}
157+
},
158+
"description": "Play with the width of the parent component"
155159
},
156160
"lang": {
157161
"options": ["fr", "en", "es", "de"],

0 commit comments

Comments
 (0)