mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 13:51:13 +00:00
Revert "Modify instances page to not link to blocked instances (#2076)"
This reverts commit 3338887385
.
This commit is contained in:
parent
01db851785
commit
8eb016d556
2 changed files with 23 additions and 30 deletions
|
@ -1 +1 @@
|
|||
Subproject commit cda65b80a58e24d8d397a835f67b193255e7b806
|
||||
Subproject commit 22637606f4a4455458e64cefe9f5ec33dccb6c52
|
|
@ -94,25 +94,24 @@ export class Instances extends Component<any, InstancesState> {
|
|||
</h2>
|
||||
{this.itemList(instances.linked)}
|
||||
</div>
|
||||
<div className="col-md-6">
|
||||
{instances.allowed && instances.allowed.length > 0 && (
|
||||
<>
|
||||
<h2 className="h5 mb-3">
|
||||
{I18NextService.i18n.t("allowed_instances")}
|
||||
</h2>
|
||||
{this.itemList(instances.allowed)}
|
||||
</>
|
||||
)}
|
||||
|
||||
{instances.blocked && instances.blocked.length > 0 && (
|
||||
<>
|
||||
<h2 className="h5 mb-3">
|
||||
{I18NextService.i18n.t("blocked_instances")}
|
||||
</h2>
|
||||
{this.itemList(instances.blocked, false)}
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<div className="row">
|
||||
{instances.allowed && instances.allowed.length > 0 && (
|
||||
<div className="col-md-6">
|
||||
<h2 className="h5 mb-3">
|
||||
{I18NextService.i18n.t("allowed_instances")}
|
||||
</h2>
|
||||
{this.itemList(instances.allowed)}
|
||||
</div>
|
||||
)}
|
||||
{instances.blocked && instances.blocked.length > 0 && (
|
||||
<div className="col-md-6">
|
||||
<h2 className="h5 mb-3">
|
||||
{I18NextService.i18n.t("blocked_instances")}
|
||||
</h2>
|
||||
{this.itemList(instances.blocked)}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</>
|
||||
) : (
|
||||
|
@ -134,7 +133,7 @@ export class Instances extends Component<any, InstancesState> {
|
|||
);
|
||||
}
|
||||
|
||||
itemList(items: Instance[], link = true) {
|
||||
itemList(items: Instance[]) {
|
||||
return items.length > 0 ? (
|
||||
<div className="table-responsive">
|
||||
<table id="instances_table" className="table table-sm table-hover">
|
||||
|
@ -149,15 +148,9 @@ export class Instances extends Component<any, InstancesState> {
|
|||
{items.map(i => (
|
||||
<tr key={i.domain}>
|
||||
<td>
|
||||
{link ? (
|
||||
<a href={`https://${i.domain}`} rel={relTags}>
|
||||
{" "}
|
||||
{i.domain}{" "}
|
||||
</a>
|
||||
) : (
|
||||
<span> {i.domain} </span>
|
||||
)}
|
||||
;
|
||||
<a href={`https://${i.domain}`} rel={relTags}>
|
||||
{i.domain}
|
||||
</a>
|
||||
</td>
|
||||
<td>{i.software}</td>
|
||||
<td>{i.version}</td>
|
||||
|
|
Loading…
Reference in a new issue