aboutsummaryrefslogtreecommitdiff
path: root/DomainDig/ResultSectionViews.swift
diff options
context:
space:
mode:
Diffstat (limited to 'DomainDig/ResultSectionViews.swift')
-rw-r--r--DomainDig/ResultSectionViews.swift3
1 files changed, 2 insertions, 1 deletions
diff --git a/DomainDig/ResultSectionViews.swift b/DomainDig/ResultSectionViews.swift
index e27c4d5..714919d 100644
--- a/DomainDig/ResultSectionViews.swift
+++ b/DomainDig/ResultSectionViews.swift
@@ -811,12 +811,13 @@ struct WebSectionView: View {
Text(redirect.url)
.font(appDensity.font(.caption))
.textSelection(.enabled)
- AppCopyButton(value: redirect.url, label: "Copy redirect URL")
if redirect.isFinal {
Text("(final)")
.font(appDensity.font(.caption2))
.foregroundStyle(Color(.appTextSecondary))
}
+ Spacer(minLength: 8)
+ AppCopyButton(value: redirect.url, label: "Copy redirect URL")
}
}
}