progress today, clicking and fixing

This commit is contained in:
2026-02-04 15:09:46 -05:00
parent a72559666d
commit f0c561311f
14 changed files with 52 additions and 25 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
module ApplicationHelper
# overwrite i18n l, to handle nil values
def l(*args)
def l(*args, **options)
return '' unless args.first
super(*args)
super(*args, **options)
end
def user_root_path