We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57c24fe commit 5003e0aCopy full SHA for 5003e0a
src/Cell.js
@@ -182,23 +182,22 @@ export default function Cell({
182
<RunContainer>
183
{cellId == activeCell ? (
184
<div
185
- id="play"
186
onClick={() => {
187
getCode();
188
}}
189
>
190
- <BsFillCaretRightFill color="#FFDF28" fontSize="30px" />
+ <BsFillCaretRightFill id="play" color="#FFDF28" fontSize="30px" />
+ <img
191
+ id="activity-loader"
192
+ style={{ display: "none" }}
193
+ width="30px"
194
+ src={roll}
195
+ alt="running-cell"
196
+ />
197
</div>
198
) : (
199
<div>[{cellId}]:</div>
200
)}
- <img
- id="activity-loader"
- style={{ display: "none" }}
- width="30px"
- src={roll}
- alt="running-cell"
201
- />
202
</RunContainer>
203
<CellBodyContainer>
204
<CellHead>
0 commit comments