1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 15:49:39 +02:00

fix: Bug creating duplicate category leads to crash screen (#1577)

Co-authored-by: Tony Vincent Yesudas <tony.yesudas@raisenow.com>
This commit is contained in:
Tony Vincent 2024-12-30 16:04:38 +01:00 committed by GitHub
parent 9d217afb9f
commit b0d9891133
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 38 additions and 0 deletions

View file

@ -21,6 +21,7 @@ class CategoriesController < ApplicationController
redirect_back_or_to categories_path, notice: t(".success")
else
@categories = Current.family.categories.alphabetically.where(parent_id: nil)
render :new, status: :unprocessable_entity
end
end