Skip to content

Commit

Permalink
Clarify that the domain will not be removed
Browse files Browse the repository at this point in the history
  • Loading branch information
RikudouSage committed Sep 11, 2023
1 parent 6fff822 commit b5a8f8a
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,16 @@ <h3>Preview</h3>
<app-tooltip text="This instance is only on Fediseer and not synchronized to your instance." />
</td>
</tr>
<tr *ngFor="let instance of originallyBlockedInstances" [class.bg-danger]="removed.includes(instance)">
<tr
*ngFor="let instance of originallyBlockedInstances"
[class.bg-danger]="removed.includes(instance) && form.controls.purgeBlacklist.value"
[class.bg-warning]="removed.includes(instance) && !form.controls.purgeBlacklist.value"
>
<td>
{{instance}}
<app-tooltip *ngIf="!removed.includes(instance)" text="This instance is on both your Fediseer censure list and instance blocklist." />
<app-tooltip *ngIf="removed.includes(instance)" text="This instance is only on your instance blocklist but not on your Fediseer blocklist." />
<app-tooltip *ngIf="removed.includes(instance) && form.controls.purgeBlacklist.value" text="This instance is only on your instance blocklist but not on your Fediseer blocklist and will be removed from your Lemmy blocklist if you run a synchronization." />
<app-tooltip *ngIf="removed.includes(instance) && !form.controls.purgeBlacklist.value" text="This instance is only on your instance blocklist but not on your Fediseer blocklist. It will not be removed because you don't have the 'Purge blacklist' option checked." />
</td>
</tr>
</table>
Expand Down

0 comments on commit b5a8f8a

Please sign in to comment.