We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61715e0 commit f420d22Copy full SHA for f420d22
1 file changed
src/routes/(console)/organization-[organization]/domains/domain-[domain]/table.svelte
@@ -82,12 +82,12 @@
82
{@const isARecord = record.value === 'a.a.a.a'}
83
{@const isAAAARecord = record.type.toLowerCase() === 'aaaa'}
84
{@const isCAARecord = record.type.toLowerCase() === 'caa'}
85
- {#if isARecord || isAAAARecord}
+ {#if record.lock && (isARecord || isAAAARecord)}
86
<!-- to align with InteractiveText -->
87
<div style:padding-inline-start="4px">
88
<Typography.Text>Served by Appwrite</Typography.Text>
89
</div>
90
- {:else if isCAARecord}
+ {:else if record.lock && isCAARecord}
91
92
93
<Typography.Text>Generated by Appwrite</Typography.Text>
0 commit comments