diff options
| author | cedricnjanga | 2017-12-12 12:08:21 +0100 | 
|---|---|---|
| committer | cedricnjanga | 2017-12-13 11:54:26 +0100 | 
| commit | 9b3c1234644adb51e24e6d664d63ff37a7bc9fa2 (patch) | |
| tree | 0f0f7237a1e8741919c1a404146ea90c9f16c07f /app | |
| parent | 4b341d795100a8a5417e4d822ae2afb3ed70da8a (diff) | |
| download | chouette-core-9b3c1234644adb51e24e6d664d63ff37a7bc9fa2.tar.bz2 | |
Refs #5112 : Referential#create
=> Only display the short_id of lines objetids for better UI
Diffstat (limited to 'app')
| -rw-r--r-- | app/models/chouette/line.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/app/models/chouette/line.rb b/app/models/chouette/line.rb index 784e3f5b9..93d4f5e8b 100644 --- a/app/models/chouette/line.rb +++ b/app/models/chouette/line.rb @@ -72,7 +72,7 @@ module Chouette      end      def display_name -      [self.get_objectid.local_id, number, name, company.try(:name)].compact.join(' - ') +      [self.get_objectid.short_id, number, name, company.try(:name)].compact.join(' - ')      end      def companies | 
