Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit 497e92b

Browse files
author
Aaron Imming
committed
Be consistent in display values
1 parent db544b8 commit 497e92b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/botPage/view/View.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ export default class View {
521521
});
522522
elStopButtons.forEach(el => {
523523
const elStopButton = el;
524-
elStopButton.style.display = 'initial';
524+
elStopButton.style.display = 'inline-block';
525525
});
526526

527527
globalObserver.emit('summary.disable_clear');
@@ -675,7 +675,7 @@ export default class View {
675675
// killed the API connection.
676676
getStopButtonElements().forEach(el => {
677677
const elStopButton = el;
678-
elStopButton.style.display = 'none';
678+
elStopButton.style.display = null;
679679
elStopButton.removeAttribute('disabled');
680680
});
681681
getRunButtonElements().forEach(el => {

0 commit comments

Comments
 (0)