Changed elements tag to output

This commit is contained in:
Ulysse ARNAUD 2022-10-10 10:17:45 +02:00
parent a78e4d1327
commit 01b11e1ac2
2 changed files with 10 additions and 10 deletions

View file

@ -50,7 +50,7 @@ class CommandView extends React.Component{
]);
return (
<div id={this.props.id} className="reactCommandView">
<output id={this.props.id} className="reactCommandView">
<p className={commandClass}>
<span className="prompt">{'$'}</span>
{' '}
@ -69,7 +69,7 @@ class CommandView extends React.Component{
<div className="commandLineWarnings">
{this.renderFormattedWarnings()}
</div>
</div>
</output>
);
}
@ -104,9 +104,9 @@ class CommandView extends React.Component{
}
}
return (
<div className={'commandLineResult'}>
<output className={'commandLineResult'}>
{result}
</div>
</output>
);
}