Skip to content

Commit

Permalink
Rename operation folder
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-sidorov committed Jan 8, 2025
1 parent beee63c commit 3961efd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ defmodule BudgetTrackerWeb.AccountsLive.Components.AccountCard do
<.svg_icon variant={icon_type(@type)} />
<span
:for={
{name, value} <- [{"Account", @title}, {"Amount", @amount}, {"Currency", @currency}]
{name, value} <- [{"Title", @title}, {"Amount", @amount}, {"Currency", @currency}]
}
class="flex flex-col sm:flex-row sm:gap-1"
>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule BudgetTrackerWeb.OperationLive.FormComponent do
defmodule BudgetTrackerWeb.OperationsLive.FormComponent do
use BudgetTrackerWeb, :live_component

alias BudgetTracker.Operations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule BudgetTrackerWeb.OperationLive.Index do
defmodule BudgetTrackerWeb.OperationsLive.Index do
use BudgetTrackerWeb, :live_view

alias BudgetTracker.Operations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
defmodule BudgetTrackerWeb.OperationLive.Show do
defmodule BudgetTrackerWeb.OperationsLive.Show do
use BudgetTrackerWeb, :live_view

alias BudgetTracker.Operations
Expand Down

0 comments on commit 3961efd

Please sign in to comment.