Skip to content
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

[docs-infra] Simplify Algolia crawler config #41312

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/modules/components/ApiPage/table/ClassesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ export default function ClassesTable(props: ClassesTableProps) {

return (
<tr key={className} id={getHash({ componentName, className: key })}>
<td>
<td className="algolia-lvl3">
<span className="class-name">.{className}</span>
</td>
{displayClassKeys && (
<td>{!isGlobal && <span className="class-key">{key}</span>}</td>
)}
<td>
<td className="algolia-content">
<span
dangerouslySetInnerHTML={{
__html: description || '',
Expand Down
4 changes: 2 additions & 2 deletions docs/src/modules/components/ApiPage/table/PropertiesTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default function PropertiesTable(props: PropertiesTableProps) {
key={propName}
id={getHash({ componentName, propName, hooksParameters, hooksReturnValue })}
>
<td className="MuiApi-table-item-title">
<td className="MuiApi-table-item-title algolia-lvl3">
{propName}
{isRequired ? '*' : ''}
{isOptional ? '?' : ''}
Expand Down Expand Up @@ -200,7 +200,7 @@ export default function PropertiesTable(props: PropertiesTableProps) {
)}
</td>
)}
<td className="MuiPropTable-description-column">
<td className="MuiPropTable-description-column algolia-content">
{description && <PropDescription description={description} />}
{seeMoreDescription && (
<p
Expand Down
Loading