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 c00178d commit e6aade6Copy full SHA for e6aade6
apps/react-storybook/stories/scheduler/SchedulerFormCustomization.stories.tsx
@@ -338,7 +338,7 @@ export const LegacyPopup: Story = {
338
"editing.form.iconsShowMode": "both",
339
} as Properties,
340
argTypes: iconsShowModeArgType,
341
- render: () => {
+ render: (args) => {
342
let form: InstanceType<typeof dxForm> | null = null;
343
344
const schedulerRef = useRef(null);
@@ -396,7 +396,7 @@ export const LegacyPopup: Story = {
396
onContentReady: function (e) {
397
form = e.component;
398
},
399
- iconsShowMode: "both",
+ iconsShowMode: args["editing.form.iconsShowMode"],
400
items: [
401
{
402
name: "mainGroup",
0 commit comments