Skip to content

Commit f420d22

Browse files
committed
Only mask if locked
1 parent 61715e0 commit f420d22

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/routes/(console)/organization-[organization]/domains/domain-[domain]

src/routes/(console)/organization-[organization]/domains/domain-[domain]/table.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@
8282
{@const isARecord = record.value === 'a.a.a.a'}
8383
{@const isAAAARecord = record.type.toLowerCase() === 'aaaa'}
8484
{@const isCAARecord = record.type.toLowerCase() === 'caa'}
85-
{#if isARecord || isAAAARecord}
85+
{#if record.lock && (isARecord || isAAAARecord)}
8686
<!-- to align with InteractiveText -->
8787
<div style:padding-inline-start="4px">
8888
<Typography.Text>Served by Appwrite</Typography.Text>
8989
</div>
90-
{:else if isCAARecord}
90+
{:else if record.lock && isCAARecord}
9191
<!-- to align with InteractiveText -->
9292
<div style:padding-inline-start="4px">
9393
<Typography.Text>Generated by Appwrite</Typography.Text>

0 commit comments

Comments
 (0)