Current Behavior
- List not updated on label change.
Given items in history list
When I change label of any item
Then list is not updated
- List not updated on favorites change.
Given items in history list
When I click the star icon on any item
Then list is not updated
Possible Solution
|
this.setState({ ...this.historyStore.items, ...this.favoriteStore.items }); |
|
this.setState({ ...this.historyStore.items, ...this.favoriteStore.items }); |
I think this is the intention:
this.setState({ queries: [...this.historyStore.items, ...this.favoriteStore.items] });
Current Behavior
Possible Solution
graphiql/src/components/QueryHistory.js
Line 121 in 9f40b25
graphiql/src/components/QueryHistory.js
Line 136 in 9f40b25
I think this is the intention: