When users created a budget and made a typo, they could use the link to go back to edit a budget. However, after doing so, they were out of the budget creation process. So we're now letting users go back to edit the budget, fix any mistakes they might have made, and then continue to groups.
13 lines
223 B
Ruby
13 lines
223 B
Ruby
class Admin::BudgetsWizard::Budgets::EditComponent < ApplicationComponent
|
|
include Header
|
|
attr_reader :budget
|
|
|
|
def initialize(budget)
|
|
@budget = budget
|
|
end
|
|
|
|
def title
|
|
t("admin.budgets.edit.title")
|
|
end
|
|
end
|