[~] Run button fix

This commit is contained in:
Charles Le Maux 2024-07-10 14:21:46 +01:00
parent 7cba360e42
commit a145f9044e

View File

@ -59,7 +59,7 @@ const ServerCard = ({ status, version, name, framework, onRunClick, onStopClick,
<div className="tooltip"></div>
</div>
<div className={styles.buttonContainer}>
{status === "false" && (
{status === false && (
<button className={styles.stoppedButton} onClick={handleRun}> Démarrer</button>
)}
{status === true && (