mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
fix bug: check text is exist in breakFilter
This commit is contained in:
parent
91f4694175
commit
503e8fc95f
@ -103,7 +103,7 @@ Application.Filters.filter "humanize", [ ->
|
||||
##
|
||||
Application.Filters.filter "breakFilter", [ ->
|
||||
(text) ->
|
||||
if text != undefined
|
||||
if text?
|
||||
text.replace(/\n+/g, '<br />')
|
||||
]
|
||||
|
||||
@ -232,4 +232,4 @@ Application.Filters.filter 'toIsoDate', [ ->
|
||||
return date unless (date instanceof Date || moment.isMoment(date))
|
||||
moment(date).format('YYYY-MM-DD')
|
||||
|
||||
]
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user