mirror of
https://github.com/System-End/shipment-viewer.git
synced 2026-04-19 18:35:17 +00:00
always practice safe navigation kids
This commit is contained in:
parent
017070f70a
commit
b688e79d4b
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ class WarehouseShipment < Shipment
|
|||
end
|
||||
|
||||
def title_text
|
||||
fields["user_facing_title"] || fields["Request Type"].join(', ')
|
||||
fields["user_facing_title"] || fields["Request Type"]&.join(', ') || "Who knows?"
|
||||
end
|
||||
|
||||
def date
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue