mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-12 15:01:38 +03:00
graph-store: remove-graph in keys
This commit is contained in:
parent
1da21eb3f0
commit
6e18225c5c
@ -75,10 +75,12 @@ const addGraph = (json, state) => {
|
||||
const removeGraph = (json, state) => {
|
||||
const data = _.get(json, 'remove-graph', false);
|
||||
if (data) {
|
||||
|
||||
if (!('graphs' in state)) {
|
||||
state.graphs = {};
|
||||
}
|
||||
let resource = data.ship + '/' + data.name;
|
||||
state.graphKeys.delete(resource);
|
||||
delete state.graphs[resource];
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user