-
Notifications
You must be signed in to change notification settings - Fork 29
fix: json entities misaligned tables #1785
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR fixes table alignment issues in JSON entity documentation pages by applying consistent CSS styling. The changes ensure that table headers don't wrap and table content displays properly across multiple documentation files.
- Adds
white-space: nowrap
CSS rule to table headers to prevent text wrapping - Standardizes table cell formatting by adding backticks around type and required field values
- Applies consistent styling across 12 JSON entity documentation files
Reviewed Changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
searchresultsinfo.md | Adds CSS rule to prevent table header wrapping |
searchinfo.md | Adds CSS rule to prevent table header wrapping |
reportsource.md | Adds CSS rule to prevent table header wrapping |
parametervalue.md | Adds CSS rule to prevent table header wrapping |
parameter.md | Adds CSS rule to prevent table header wrapping |
pageinfo.md | Adds CSS rule to prevent table header wrapping |
mailmessage.md | Adds CSS rule to prevent table header wrapping |
formatkey.md | Adds CSS rule to prevent table header wrapping |
formatinfo.md | Adds CSS rule to prevent table header wrapping |
documentinfo.md | Adds CSS rule to prevent table header wrapping with mixed indentation |
bookmarknode.md | Adds CSS rule to prevent table header wrapping |
aithread.md | Adds CSS rule and standardizes table cell formatting with backticks |
...ing-reports/host-the-report-engine-remotely/rest-api-reference/json-entities/documentinfo.md
Show resolved
Hide resolved
|`requireConsent`|Boolean|true|Indicates whether user consent is required before using the AI functionality.| | ||
|`consentMessage`|String|true|The message shown to the user to obtain consent for processing data. May include links to privacy policies.| | ||
|`allowCustomPrompts`|Boolean|true|Specifies if users are allowed to enter their own custom prompts in addition to the predefined ones.| | ||
|`threadId`|`String`|`true`|The unique identifier of the AI thread.| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
} | ||
|
||
th { | ||
white-space: nowrap; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good
No description provided.