summaryrefslogtreecommitdiff
path: root/web/source/settings/admin/federation/detail.js
diff options
context:
space:
mode:
authorLibravatar f0x52 <f0x@cthu.lu>2023-01-25 09:47:55 +0100
committerLibravatar GitHub <noreply@github.com>2023-01-25 09:47:55 +0100
commit27d4e364e04c65a11c2855eaa9a1ffc55eb23239 (patch)
treebbdde6654b6f33278ae378b7dd0345a1edc55a2e /web/source/settings/admin/federation/detail.js
parent[chore] remove funky duplicate attachment in testrig (#1379) (diff)
downloadgotosocial-27d4e364e04c65a11c2855eaa9a1ffc55eb23239.tar.xz
[chore] Settings refactor fix4 (#1383)
* fix error handling behavior in emoji overview and FormWithData components * css: long domain cutoff * unused require * eslint vscode task
Diffstat (limited to 'web/source/settings/admin/federation/detail.js')
-rw-r--r--web/source/settings/admin/federation/detail.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/source/settings/admin/federation/detail.js b/web/source/settings/admin/federation/detail.js
index 7324a42a5..ecace90cd 100644
--- a/web/source/settings/admin/federation/detail.js
+++ b/web/source/settings/admin/federation/detail.js
@@ -67,7 +67,7 @@ module.exports = function InstanceDetail({ baseUrl }) {
return (
<div>
- <h1><BackButton to={baseUrl} /> Federation settings for: {domain}</h1>
+ <h1 className="text-cutoff"><BackButton to={baseUrl} /> Federation settings for: <span title={domain}>{domain}</span></h1>
{infoContent}
<DomainBlockForm defaultDomain={domain} block={existingBlock} />
</div>