New source found from dndbeyond.com
This commit is contained in:
@@ -122,7 +122,7 @@ export const ExtraRow: FC<Props> = ({
|
||||
const total: number = totalHp + tempHp;
|
||||
|
||||
contentNode = (
|
||||
<React.Fragment>
|
||||
<>
|
||||
<span className="ct-extra-row__hp-value ct-extra-row__hp-value--current">
|
||||
{current}
|
||||
</span>
|
||||
@@ -130,7 +130,7 @@ export const ExtraRow: FC<Props> = ({
|
||||
<span className="ct-extra-row__hp-value ct-extra-row__hp-value--total">
|
||||
{total}
|
||||
</span>
|
||||
</React.Fragment>
|
||||
</>
|
||||
);
|
||||
} else {
|
||||
contentNode = (
|
||||
@@ -179,7 +179,7 @@ export const ExtraRow: FC<Props> = ({
|
||||
let contentNode: React.ReactNode = null;
|
||||
if (data !== null) {
|
||||
contentNode = (
|
||||
<React.Fragment>
|
||||
<>
|
||||
<div className="ct-extra-row__speed-value">
|
||||
<NumberDisplay
|
||||
type="distanceInFt"
|
||||
@@ -191,7 +191,7 @@ export const ExtraRow: FC<Props> = ({
|
||||
{data.movementId !== Constants.MovementTypeEnum.WALK && (
|
||||
<div className="ct-extra-row__speed-callout">{label}</div>
|
||||
)}
|
||||
</React.Fragment>
|
||||
</>
|
||||
);
|
||||
} else {
|
||||
contentNode = (
|
||||
@@ -222,10 +222,10 @@ export const ExtraRow: FC<Props> = ({
|
||||
}
|
||||
|
||||
return (
|
||||
<React.Fragment>
|
||||
<>
|
||||
{armorClassText}
|
||||
{armorClassInfo.showTooltip && renderAdditionalInfoTooltip()}
|
||||
</React.Fragment>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user