Skip to content

Commit

Permalink
add name in led delete sub
Browse files Browse the repository at this point in the history
  • Loading branch information
tom1484 committed Feb 10, 2024
1 parent b9d013e commit 0767e97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions editor-server/src/graphql/mutations/led.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,9 +503,9 @@ impl LEDMutation {
update_effects: Vec::new(),
delete_effects: vec![LEDEffectData {
id,
name: "".to_string(),
model_name: led_effect.model_name.clone(),
part_name: led_effect.part_name.clone(),
name: led_effect.name,
model_name: led_effect.model_name,
part_name: led_effect.part_name,
repeat: 0,
frames: vec![],
}],
Expand Down

0 comments on commit 0767e97

Please sign in to comment.