Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/styles/components/_main-container.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ body.mynah-ui-root {
height: 2px;
opacity: 0.25;
&:horizontal {
width: 0px;
height: 0px;
height: 4px;
}
}

Expand Down
1 change: 1 addition & 0 deletions src/styles/components/_syntax-highlighter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@
padding: var(--mynah-sizing-2);
position: relative;
margin: 0;
min-width: 0;
overflow-x: auto;
overflow-y: scroll;
box-sizing: border-box;
Expand Down
2 changes: 1 addition & 1 deletion ui-tests/__test__/flows/quick-action-commands-header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
const hasStatus = await headerElement.evaluate((el, className) =>
el.classList.contains(className), statusClass
);
if (hasStatus) {
if (hasStatus === true) {

Check failure on line 143 in ui-tests/__test__/flows/quick-action-commands-header.ts

View workflow job for this annotation

GitHub Actions / lint / lint

This expression unnecessarily compares a boolean value to a boolean instead of using it directly
foundStatusClass = true;
console.log(`Found status class: ${statusClass}`);
break;
Expand Down
Loading