UI: 'Disable Text Effects' setting applies to "corrupted text" (#944)

This commit is contained in:
draughtnyan
2023-12-27 02:30:08 -06:00
committed by GitHub
parent e7b68676f5
commit ccf0aa4771
7 changed files with 25 additions and 12 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ const FactionElement = (props: FactionElementProps): React.ReactElement => {
) : (
<Tooltip title={"Rumored Faction"}>
<span style={{ overflow: "hidden", whiteSpace: "nowrap", textOverflow: "ellipsis" }}>
<CorruptableText content={props.faction.name} />
<CorruptableText content={props.faction.name} spoiler={false} />
</span>
</Tooltip>
)}