Skip to content

Commit

Permalink
Fix minor FE bugs (open-telemetry#670)
Browse files Browse the repository at this point in the history
Co-authored-by: Carter Socha <43380952+cartersocha@users.noreply.github.com>
  • Loading branch information
julianocosta89 and cartersocha authored Jan 4, 2023
1 parent 3edc263 commit cb3883c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
14 changes: 9 additions & 5 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
docs
internal

###################################
# shippingservice
./src/shippingservice/target
###################################

###################################
# currencyservice
./src/currencyservice/client.js
Expand All @@ -22,6 +17,15 @@ internal
./src/featureflagservice/tmp/
./src/featureflagservice/.elixir_ls

###################################
# frontend
./src/frontend/node_modules/

###################################
# shippingservice
./src/shippingservice/target
###################################

# Mix artifacts
./src/featureflagservice/_build/
./src/featureflagservice/deps/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const CartDropdown = styled.div`
width: 100%;
height: 100%;
max-height: 100%;
overflow-y: scroll;
padding: 25px;
display: flex;
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/components/CartDropdown/CartDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const CartDropdown = ({ productList, isOpen, onClose }: IProps) => {
</S.ItemList>
</div>
<Link href="/cart">
<S.CartButton data-cy={CypressFields.CartGoToShopping}>Go to Shipping Cart</S.CartButton>
<S.CartButton data-cy={CypressFields.CartGoToShopping}>Go to Shopping Cart</S.CartButton>
</Link>
</S.CartDropdown>
) : null;
Expand Down
1 change: 1 addition & 0 deletions src/frontend/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export default class MyDocument extends Document<{ envString: string }> {
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"
rel="stylesheet"
/>
<title>OTel demo</title>
</Head>
<body>
<Main />
Expand Down

0 comments on commit cb3883c

Please # to comment.