From 0139cf5bc0d9744c2cf57f47ea81219825f87a9f Mon Sep 17 00:00:00 2001 From: Jamil Bou Kheir Date: Wed, 22 Jul 2020 00:15:01 -0500 Subject: [PATCH] Join with space --- apps/fg_http/lib/fg_http_web/views/device_view.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/fg_http/lib/fg_http_web/views/device_view.ex b/apps/fg_http/lib/fg_http_web/views/device_view.ex index 135f88fe1..b298b1c2a 100644 --- a/apps/fg_http/lib/fg_http_web/views/device_view.ex +++ b/apps/fg_http/lib/fg_http_web/views/device_view.ex @@ -12,6 +12,6 @@ defmodule FgHttpWeb.DeviceView do end defp reverse_concat(word, number) do - "#{number}" <> "#{word}" + "#{number} " <> "#{word}" end end