mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
fix args reset from controls
This commit is contained in:
parent
bd367b1fd7
commit
85e4d60e52
@ -1,3 +1,4 @@
|
||||
/* eslint-disable no-param-reassign */
|
||||
import { dedent } from 'ts-dedent';
|
||||
import { createApp, h, reactive } from 'vue';
|
||||
import type { RenderContext, ArgsStoryFn } from '@storybook/types';
|
||||
@ -106,7 +107,9 @@ function getSlots(props: Args, context: StoryContext<VueRenderer, Args>) {
|
||||
*/
|
||||
function updateArgs(reactiveArgs: Args, nextArgs: Args) {
|
||||
if (!nextArgs) return;
|
||||
// use spread operator to merge new args with the existing args
|
||||
Object.keys(reactiveArgs).forEach((key) => {
|
||||
delete reactiveArgs[key];
|
||||
});
|
||||
Object.assign(reactiveArgs, nextArgs);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user