feat: remove timezone and creation date from public systems

This commit is contained in:
Spectralitree 2021-12-12 15:30:39 +01:00
parent 61fb53b94b
commit 327d2b8aa5

View File

@ -39,12 +39,12 @@
<b>Tag:</b> {user.tag}
</Col>
{/if}
{#if user.created}
{#if user.created && !isPublic}
<Col xs={12} lg={4} class="mb-2">
<b>Created:</b> {created}
</Col>
{/if}
{#if user.timezone}
{#if user.timezone && !isPublic}
<Col xs={12} lg={4} class="mb-2">
<b>Timezone:</b> {user.timezone}
</Col>