mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Merge pull request #1144 from raciat/strict-equal-action-log
Use strict equality in action logger
This commit is contained in:
commit
0b48659adf
@ -14,7 +14,7 @@ export default class ActionLogger extends React.Component {
|
||||
action.data.args = action.data.args.map(arg => JSON.parse(arg));
|
||||
const actions = [...this.state.actions];
|
||||
const previous = actions.length && actions[0];
|
||||
if (previous && deepEqual(previous.data, action.data)) {
|
||||
if (previous && deepEqual(previous.data, action.data, { strict: true })) {
|
||||
previous.count++;
|
||||
} else {
|
||||
action.count = 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user