Merge branch 'bug/set-mastodon-relay-subscribers-as-instances' into 'master'
Show Mastodon relay subscribers as instances in admin panel See merge request framasoft/mobilizon!362
This commit is contained in:
commit
056b696b36
@ -39,6 +39,6 @@ export default class RelayMixin extends Vue {
|
||||
}
|
||||
|
||||
isInstance(actor: IActor): boolean {
|
||||
return actor.type === ActorType.APPLICATION && actor.preferredUsername === 'relay';
|
||||
return actor.type === ActorType.APPLICATION && (actor.preferredUsername === 'relay' || actor.preferredUsername === actor.domain);
|
||||
}
|
||||
}
|
||||
|
@ -65,10 +65,6 @@ export default class ReportList extends Vue {
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.container li {
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
img.image {
|
||||
display: inline;
|
||||
height: 1.5em;
|
||||
|
Loading…
Reference in New Issue
Block a user