Fix string in heading and breadcrumbs

This commit is contained in:
Maximilian Grundke
2017-07-12 11:11:32 +02:00
parent 9eadc3a4db
commit fdee3c3efc

View File

@ -1,4 +1,8 @@
class ErrorTemplate < ActiveRecord::Base class ErrorTemplate < ActiveRecord::Base
belongs_to :execution_environment belongs_to :execution_environment
has_and_belongs_to_many :error_template_attributes has_and_belongs_to_many :error_template_attributes
def to_s
"#{id} [#{name}]"
end
end end