Skip to content

Commit

Permalink
Upped deps
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Nov 22, 2023
1 parent f127a47 commit eec2128
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 7 deletions.
4 changes: 3 additions & 1 deletion crates/coordinator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ pub enum Signal {
},
LinkDeleted {
action: SignedActionHashed,
create_link_action: SignedActionHashed,
link_type: LinkTypes,
},
EntryCreated {
Expand Down Expand Up @@ -259,7 +260,8 @@ fn signal_action(action: SignedActionHashed) -> ExternResult<()> {
if let Ok(Some(link_type)) =
LinkTypes::from_type(create_link.zome_index, create_link.link_type)
{
emit_signal(Signal::LinkDeleted { action, link_type })?;
emit_signal(Signal::LinkDeleted { action, link_type,
create_link_action: record.action().clone() })?;
}
Ok(())
}
Expand Down
25 changes: 20 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"dependencies": {
"@holochain-open-dev/elements": "^0.8.3",
"@holochain-open-dev/stores": "^0.7.12",
"@holochain-open-dev/stores": "^0.8.2",
"@holochain-open-dev/utils": "^0.16.2",
"@holochain/client": "^0.16.0",
"@lit/context": "^1.0.1",
Expand Down

0 comments on commit eec2128

Please sign in to comment.