-
Notifications
You must be signed in to change notification settings - Fork 52.2k
Open
Labels
status:team-assignedA team has been assigned the issue or PRA team has been assigned the issue or PRteam:nodesIssue is with the Nodes teamIssue is with the Nodes team
Description
Bug Description
In the Chat Node:
The CSS font-family declaration for the chat node/widget appears to be syntactically invalid, which causes the browser to ignore the entire font stack and render the content using the default serif font (usually Times New Roman).
The issue is that the entire font-family list is wrapped in parentheses.
Incorrect CSS Code (Observed in element styles):
font-family: (-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);Proposed Fix
The parentheses must be removed, as they are invalid syntax for a CSS font-family property. The correct CSS should be:
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;To Reproduce
Open Hosted Chat page
Expected behavior
The font should be rendered using the system font stack provided.
Debug Info
N/A
Operating System
N/A
n8n Version
2.0.2
Node.js Version
22
Database
PostgreSQL
Execution mode
queue
Hosting
self hosted
Metadata
Metadata
Assignees
Labels
status:team-assignedA team has been assigned the issue or PRA team has been assigned the issue or PRteam:nodesIssue is with the Nodes teamIssue is with the Nodes team