Skip to content

Commit

Permalink
KanbanModal shows medium after deleting subscription #588
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimdieterich committed Jan 12, 2025
1 parent 4ebbfe0 commit d0aeb41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/KanbanController.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ public function update(Request $request, Kanban $kanban)
'title' => $input['title'] ?? $kanban->title ,
'description' => $input['description'] ?? $kanban->title,
'color' => $input['color'] ?? $kanban->color,
'medium_id' => $input['medium_id'] ?? $kanban->medium_id,
'medium_id' => $input['medium_id'],// ?? $kanban->medium_id, -> to get medium unsubscribe working
'commentable' => $input['commentable'],
'auto_refresh' => $input['auto_refresh'],
'only_edit_owned_items' => $input['only_edit_owned_items'],
Expand Down

0 comments on commit d0aeb41

Please # to comment.