Hide empty text as soon as another inbox entry appears
This commit is contained in:
parent
44c0136c9e
commit
22289f2946
|
@ -9,3 +9,7 @@
|
|||
.pe-none {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.empty:not(:only-child) {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
@ -19,4 +19,4 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
= render "inbox/entry", i: i
|
||||
|
||||
- if @inbox.empty?
|
||||
= t(".empty")
|
||||
%p.empty= t(".empty")
|
||||
|
||||
- if @more_data_available
|
||||
.d-flex.justify-content-center#paginator
|
||||
|
|
Loading…
Reference in New Issue