Skip to content

Commit

Permalink
Fixed compile
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Nov 20, 2023
1 parent 96ac9ee commit 6d1a702
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/scaffold/entry_type/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,9 @@ use {}::*;

for f in &entry_def.fields {
if let Some(linked_from) = &f.linked_from {
initial.push_str(get_links_handler(&linked_from, &entry_def.referenceable()).as_str());
initial.push_str(
get_links_handler(&linked_from, &entry_def.referenceable(), crud.delete).as_str(),
);
}
}

Expand Down

0 comments on commit 6d1a702

Please sign in to comment.