forked from External/greenlight
[fix] avoid printing %{inject} when no_recordings are available (#2819)
Co-authored-by: Thibault François <thibault@octopuce.fr>
This commit is contained in:
parent
0b418d7259
commit
d71ec232a2
|
@ -86,7 +86,7 @@
|
||||||
<% if user_recordings %>
|
<% if user_recordings %>
|
||||||
<%= t("recording.no_user_recordings") %>
|
<%= t("recording.no_user_recordings") %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= only_public ? t("recording.no_public_recordings") : t("recording.no_recordings") %>
|
<%= only_public ? t("recording.no_public_recordings") : t("recording.no_recordings", inject: "") %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in New Issue