Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
YouTube Security VideosGoogle Cloud Tech: Gemini is coming to your city(24.09.2026 um 15:00 Uhr)
AI & KI NachrichtenGoogle’s latest moonshot to put machine learning in space(24.09.2026 um 15:12 Uhr)
Windows Tipps & SecurityPoll: What's your favorite Surface of 2026?(24.09.2026 um 14:58 Uhr)
Sichere ProgrammierungStreaming Materialized Views for Live Read Models (2026)(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA Day Is Not 86400 Seconds: The DST Bug in Your Date Math(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungSetting up Traefik: reverse proxy with automatic HTTPS(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA 200 OK response does not prove a secret leak(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungHow hot do you like it?(24.09.2026 um 15:05 Uhr)
YouTube Security VideosGoogle Cloud Tech: Gemini is coming to your city(24.09.2026 um 15:00 Uhr)
AI & KI NachrichtenGoogle’s latest moonshot to put machine learning in space(24.09.2026 um 15:12 Uhr)
Windows Tipps & SecurityPoll: What's your favorite Surface of 2026?(24.09.2026 um 14:58 Uhr)
Sichere ProgrammierungStreaming Materialized Views for Live Read Models (2026)(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA Day Is Not 86400 Seconds: The DST Bug in Your Date Math(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungSetting up Traefik: reverse proxy with automatic HTTPS(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungA 200 OK response does not prove a secret leak(24.09.2026 um 15:02 Uhr)
Sichere ProgrammierungHow hot do you like it?(24.09.2026 um 15:05 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

Antd Typography.Paragraph ellipsis not working properly

I am using Antd Typography component and it's ellipsis behaviour working inconsistently in different places. Please find the root cause and fix it. Example value = These are channel specific settings right. Why to hide them based on…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

I am using Antd Typography component and it's ellipsis behaviour working inconsistently in different places. Please find the root cause and fix it.



Example value = These are channel specific settings right. Why to hide them based on features? Creator can manage settings before enabling the feature or he can set the settings beforehand and can enable the feature whenever needed. It will have clear visibility showing the settings always.



Think of such an example:

I enabled allow members to post having feed enabled. Now if I disabled feed and in channel settings I don’t know what was set previously. Now I want to give feed access to users with a limited time period but without allowing members to post. And now I can not see what was set previously before enabling the feed. So I have to enabled feed and then again go to channel settings to check it.



Why have such complications? These settings are not breaking anything. They can change it anytime and enabled/disable features accordingly.



Working:



1.




<CustomReadMoreContent
lines={onlyTextPost ? 3 : 1}
className="post-card__caption"
style={style}
>
{caption}
</CustomReadMoreContent>






2.




<Paragraph ellipsis={{ rows: 3, expandable: true, symbol: "more" }}>
{caption}
<span>
Design, a design language for background applications, is refined by
Ant UED Team.
</span>
</Paragraph>






Not working here:




<CustomReadMoreContent
className="comment-card__content__text"
lines={5}
seeMoreText="Read more"
seeLessText="Read less"
>
<MentionedContent content={text || ''} />
</CustomReadMoreContent>






MentionedContent component:




import React, { memo, useCallback, useMemo } from 'react';

import ReactLinkify from 'react-linkify';
import { useHistory } from 'react-router-dom';

import { useAppSelector } from '../../context/hooks';
import { useAppTheme } from '../../context/ThemeProvider';
import { ROUTES } from '../../types/routes';

const regex = /{{[0-9a-f]{24}#[\s\S]*?}}/g;

interface Props {
content: string;
showPlainText?: boolean;
disableMentionClick?: boolean;
}

const MentionedContent: React.FC<Props> = ({
content,
showPlainText,
disableMentionClick,
}) => {
const history = useHistory();

const { COLORS } = useAppTheme();

const { isTagMango } = useAppSelector(state => state.app);

const onClickMention = useCallback(
(mentionedUserId: string) => {
if (!isTagMango) {
history.push(ROUTES.USER_PROFILE.replace(':id', mentionedUserId));
} else {
window.open(
ROUTES.CREATOR_PROFILE.replace(':id', mentionedUserId),
'_blank',
);
}
},
[history, isTagMango],
);

const getNameFromMentiontag = (tag: string) =>
tag.substring(tag.indexOf('#') + 1, tag.length - 2);

const getIdFromMentiontag = (tag: string) =>
tag.substring(2, tag.indexOf('#'));

const textToRender = useMemo(() => {
const text = content;
const tagsRegexResult = `${text}`.match(regex);
const tags: string[] = [];

tagsRegexResult?.forEach(element => {
tags.push(element);
});

const comment = text as string;
const splits = comment.split(regex);

const nodes: React.ReactNode[] = [];
let newText = '';

splits.forEach((textPart, index) => {
nodes.push(textPart);
newText += textPart;

if (index < tags.length) {
const tag = tags[index];
const tagName = getNameFromMentiontag(tag);
const mentionedUserId = getIdFromMentiontag(tag);

newText += `@${tagName}`;

nodes.push(
<span
key={mentionedUserId}
role="button"
tabIndex={0}
onClick={
showPlainText || disableMentionClick
? undefined
: () => onClickMention(mentionedUserId)
}
style={
showPlainText
? undefined
: {
fontWeight: 600,
color: COLORS.INFO_ALT,
cursor: disableMentionClick ? undefined : 'pointer',
}
}
>
@{tagName}
</span>,
);
}
});

return { nodes, text: newText };
}, [
COLORS.INFO_ALT,
content,
disableMentionClick,
onClickMention,
showPlainText,
]);

if (showPlainText) return textToRender.nodes;

return <ReactLinkify>{textToRender.nodes}</ReactLinkify>;
};

export default memo(MentionedContent);






Result: '...Read more'



Please find the root cause why is it behaving differently and fix without affecting previous behaviours.



I need the solution ASAP. Can anyone please help me with the above issue?

CTI Threat Relationship Graph2 Knoten / 1 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Vulnerability Remediation & Verification
title: Detect Exploitation - Antd Typography.Paragraph ellipsis not working properly
id: 231ba3fb-4697-499c-b78e-4047877c4332
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      CommandLine|contains:
        - 'exploit'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "Antd Typography.Paragraph elli" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Antd Typography.Paragraph ellipsis not w.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Antd Typography.Paragraph ellipsis not working properly

Thematisch verwandte Begriffe: Antd, TypographyParagraph, ellipsis, working · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-97152 | Nanomsg versions 0.5-beta through 1.x before 1.2.3 has a remotely exploi…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick