From 0fa24209add4c673152812e017a6dceeb6f2440d Mon Sep 17 00:00:00 2001 From: Kayou Date: Mon, 27 May 2019 12:44:13 +0200 Subject: [PATCH] Do not show URL if app doesn't have one --- src/views/app/app_info.ms | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/views/app/app_info.ms b/src/views/app/app_info.ms index 8712e627f..37b359c70 100644 --- a/src/views/app/app_info.ms +++ b/src/views/app/app_info.ms @@ -25,8 +25,10 @@
{{manifest.multi_instance}}
{{t 'install_time'}}
{{formatTime install_time day="numeric" month="long" year="numeric" hour="numeric" minute="numeric"}}
-
{{t 'url'}}
-
https://{{settings.domain}}{{settings.path}}
+ {{#if settings.domain}} +
{{t 'url'}}
+
https://{{settings.domain}}{{settings.path}}
+ {{/if}}