mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
Ignore empty statuse notes in history #2852
This commit is contained in:
parent
12ec22526e
commit
87cae43536
1 changed files with 5 additions and 4 deletions
|
@ -36,11 +36,12 @@
|
||||||
- if domain.statuses.present?
|
- if domain.statuses.present?
|
||||||
- domain.statuses.each do |s|
|
- domain.statuses.each do |s|
|
||||||
= s
|
= s
|
||||||
- notes = domain.status_notes[s]
|
- if domain.status_notes.present?
|
||||||
- if notes
|
- notes = domain.status_notes[s]
|
||||||
|
- if notes
|
||||||
|
%br
|
||||||
|
%i= notes
|
||||||
%br
|
%br
|
||||||
%i= notes
|
|
||||||
%br
|
|
||||||
- if domain.pending_json.present?
|
- if domain.pending_json.present?
|
||||||
%p
|
%p
|
||||||
= link_to t(:pending_epp), '#', class: 'js-pending-toggle'
|
= link_to t(:pending_epp), '#', class: 'js-pending-toggle'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue