-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
graphql-python/graphene-django
#772Description
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
graphiql/src/components/QueryHistory.js
Line 121 in 9f40b25
this.setState({ ...this.historyStore.items, ...this.favoriteStore.items }); |
graphiql/src/components/QueryHistory.js
Line 136 in 9f40b25
this.setState({ ...this.historyStore.items, ...this.favoriteStore.items }); |
I think this is the intention:
this.setState({ queries: [...this.historyStore.items, ...this.favoriteStore.items] });
Metadata
Metadata
Assignees
Labels
No labels