Skip to content

Commit

Permalink
Merge pull request #1724 from jdi-testing/issue_1703-fix-spaces-betwe…
Browse files Browse the repository at this point in the history
…en-elements

Issue 1703: fix spacing between elements in PO
  • Loading branch information
KateDronova authored Apr 24, 2024
2 parents 37ed138 + b0becd1 commit ae9e3bd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "JDN — Page Object Generator",
"description": "JDN – helps Test Automation Engineer to create Page Objects in the test automation framework and speed up test development",
"devtools_page": "index.html",
"version": "3.15.24",
"version": "3.15.25",
"icons": {
"128": "icon128.png"
},
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jdn-ai-chrome-extension",
"version": "3.15.24",
"version": "3.15.25",
"description": "jdn-ai chrome extension",
"scripts": {
"start": "webpack --watch --env devenv",
Expand Down
2 changes: 1 addition & 1 deletion src/features/pageObjects/components/PageObjList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const PageObjList: React.FC<Props> = ({ jdiTemplate, vividusTemplate }) =
style={{
transform: isActive ? 'rotate(180deg)' : 'rotate(0deg)',
}}
size={14}
size={16}
color="#878A9C"
/>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/features/pageObjects/styles/generationButtons.less
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}

&__select {
width: 171px;
width: 100%;

&.ant-select-disabled {
.ant-select-selector {
Expand Down
6 changes: 5 additions & 1 deletion src/features/pageObjects/styles/pageObject.less
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

&__settings {
background-color: #fafafa;
padding: 8px 20px 16px;
padding: 8px 8px 16px 32px;

&-url {
word-break: break-all;
Expand Down Expand Up @@ -75,6 +75,10 @@
display: flex;
}

.ant-collapse-expand-icon {
padding-right: 0;
}

.ant-collapse-extra {
display: flex;

Expand Down

0 comments on commit ae9e3bd

Please sign in to comment.