Skip to content

Commit

Permalink
Merge pull request #247 from kay0u/patch-1
Browse files Browse the repository at this point in the history
Do not show URL if app doesn't have one
  • Loading branch information
alexAubin committed May 31, 2019
2 parents b4ed005 + 0fa2420 commit de6f6f6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/views/app/app_info.ms
Expand Up @@ -25,8 +25,10 @@
<dd>{{manifest.multi_instance}}</dd>
<dt>{{t 'install_time'}}</dt>
<dd>{{formatTime install_time day="numeric" month="long" year="numeric" hour="numeric" minute="numeric"}}</dd>
<dt>{{t 'url'}}</dt>
<dd><a href="https://{{settings.domain}}{{settings.path}}" target="_blank">https://{{settings.domain}}{{settings.path}}</a></dd>
{{#if settings.domain}}
<dt>{{t 'url'}}</dt>
<dd><a href="https://{{settings.domain}}{{settings.path}}" target="_blank">https://{{settings.domain}}{{settings.path}}</a></dd>
{{/if}}
</dl>
</div>
</div>
Expand Down

0 comments on commit de6f6f6

Please sign in to comment.