Transition on latest logged action.#80
Merged
arunoda merged 3 commits intostorybookjs:masterfrom Apr 9, 2016
ritz078:fix/log-transition
Merged
Transition on latest logged action.#80arunoda merged 3 commits intostorybookjs:masterfrom ritz078:fix/log-transition
arunoda merged 3 commits intostorybookjs:masterfrom
ritz078:fix/log-transition
Conversation
| .join('\n\n'); | ||
|
|
||
| return (<ActionLogger actionLog={log} onClear={clearLogs} />); | ||
| return (<ActionLogger data={data} onClear={clearLogs} />); |
Member
There was a problem hiding this comment.
Here do not send the whole data, but just send an array of strings. We can do it like this:
export function getActionLogger(data) {
const { actions = [] } = data;
const logs = actions
.map(action => stringify(action, null, 2));
return (<ActionLogger logs={logs} onClear={clearLogs} />);
}
Member
|
Thanks. |
ndelangen
pushed a commit
that referenced
this pull request
Feb 23, 2024
Fix Yarn remove command in README
|
View your CI Pipeline Execution ↗ for commit 27d7f94
☁️ Nx Cloud last updated this comment at |
kasperpeulen
pushed a commit
that referenced
this pull request
Feb 6, 2025
Add utility for tag combination & negation
yannbf
added a commit
that referenced
this pull request
Apr 17, 2025
fix: add optional chaining to object property key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
More details in #51