diff --git a/lib/planner_web/live/tasks_components.ex b/lib/planner_web/live/tasks_components.ex index 22cb21b..27dcfdb 100644 --- a/lib/planner_web/live/tasks_components.ex +++ b/lib/planner_web/live/tasks_components.ex @@ -41,8 +41,9 @@ defmodule TasksComponent do task: task, live_action: @live_action, is_active: @active_task == task.id, - route_func_2: @route_func_2, - route_func_3: @route_func_3 + route_show_task: @route_show_task, + route_edit_task: @route_edit_task, + route_index_tasks: @route_index_tasks )%> <% end %> @@ -77,8 +78,8 @@ defmodule TaskComponent do TaskDetailsComponent, id: "task_details:#{@task.id}", task: @task, - route_func_2: @route_func_2, - route_func_3: @route_func_3 + route_index_tasks: @route_index_tasks, + route_edit_task: @route_edit_task )%> <% :edit -> %> <%= live_component(@socket, @@ -88,7 +89,7 @@ defmodule TaskComponent do )%> <% end %> <% else %> - <%= live_patch(to: @route_func_3.(@socket, :show, @task.id), + <%= live_patch(to: @route_show_task.(@socket, @task.id), style: "display: block;" ) do %>