fix: info order

This commit is contained in:
Shivam Mishra
2025-09-01 13:34:45 +05:30
parent 3d9cb97bbb
commit ac51a2b3d9
@@ -31,6 +31,22 @@ const handleCopy = async text => {
<section
class="rounded-xl border border-n-weak bg-n-solid-1 w-full text-sm text-n-slate-12 divide-y divide-n-weak"
>
<div class="pl-4 pr-1 py-1 flex justify-between items-center">
<div class="flex">
<span class="text-n-slate-11 w-24">
{{ t('SECURITY_SETTINGS.SAML.ACS_URL.LABEL') }}
</span>
{{ acsUrl }}
</div>
<NextButton
type="button"
ghost
sm
slate
icon="i-lucide-copy"
@click="handleCopy(acsUrl)"
/>
</div>
<div
v-if="fingerprint"
class="pl-4 pr-1 py-1 flex justify-between items-center"
@@ -50,21 +66,5 @@ const handleCopy = async text => {
@click="handleCopy(fingerprint)"
/>
</div>
<div class="pl-4 pr-1 py-1 flex justify-between items-center">
<div class="flex">
<span class="text-n-slate-11 w-24">
{{ t('SECURITY_SETTINGS.SAML.ACS_URL.LABEL') }}
</span>
{{ acsUrl }}
</div>
<NextButton
type="button"
ghost
sm
slate
icon="i-lucide-copy"
@click="handleCopy(acsUrl)"
/>
</div>
</section>
</template>