feat: Lint paragraphs except in test files & fix
Signed-off-by: Carlos Esteban Lopez <lcarlosesteb@vmware.com>
This commit is contained in:
committed by
Carlos Lopez
parent
8de0276086
commit
e75f39e603
@@ -16,6 +16,7 @@
|
||||
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { CardHeader, Divider, IconButton, makeStyles } from '@material-ui/core';
|
||||
import Typography from '@material-ui/core/Typography';
|
||||
import {
|
||||
HeaderIconLinkRow,
|
||||
IconLinkVerticalProps,
|
||||
@@ -182,7 +183,11 @@ export const EntityBazaarInfoContent = ({
|
||||
)}
|
||||
|
||||
<CardHeader
|
||||
title={<p className={classes.wordBreak}>{bazaarProject?.title!}</p>}
|
||||
title={
|
||||
<Typography className={classes.wordBreak}>
|
||||
{bazaarProject?.title!}
|
||||
</Typography>
|
||||
}
|
||||
action={
|
||||
<div>
|
||||
<IconButton
|
||||
|
||||
@@ -22,6 +22,7 @@ import {
|
||||
IconButton,
|
||||
makeStyles,
|
||||
} from '@material-ui/core';
|
||||
import Typography from '@material-ui/core/Typography';
|
||||
import {
|
||||
HeaderIconLinkRow,
|
||||
IconLinkVerticalProps,
|
||||
@@ -256,9 +257,9 @@ export const HomePageBazaarInfoCard = ({
|
||||
|
||||
<CardHeader
|
||||
title={
|
||||
<p className={classes.wordBreak}>
|
||||
<Typography className={classes.wordBreak}>
|
||||
{bazaarProject.value?.title || initProject.title}
|
||||
</p>
|
||||
</Typography>
|
||||
}
|
||||
action={
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user