init
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<script lang="ts">
|
||||
export let uid: number | null | undefined = undefined;
|
||||
export let views: number | null | undefined = undefined;
|
||||
</script>
|
||||
|
||||
{#if (uid || views) && uid !== -1}
|
||||
<div class="border-t border-text-secondary pt-1 flex justify-between text-text-secondary text-xs">
|
||||
{#if uid}<p>UID: {uid === -2 ? '??' : uid}</p>{/if}
|
||||
{#if views}<p>VIEWS: {views}</p>{/if}
|
||||
</div>
|
||||
{/if}
|
||||
Reference in New Issue
Block a user