Skip to content

Commit

Permalink
Merge pull request open-source-labs#36 from NathanielBAdams/master
Browse files Browse the repository at this point in the history
fix cookie display bug
  • Loading branch information
samhaar authored Oct 31, 2020
2 parents 0770cae + 984f06e commit 402c194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/assets/style/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@

.add-request-button {
border: 1px solid #3734A9 !important;
position: absolute;
&:hover {
box-shadow: 1px 1px 1px 1px $neutral-300;
}
Expand Down
1 change: 1 addition & 0 deletions src/client/components/containers/CookieContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export default function CookieContainer({ cookie }) {
const [showCookie, setShowCookie] = useState(false);

const cookies = Object.entries(cookie).map(([key, value], index) => {
if (!key || !value) return;
if (showCookie === true && index > 1) {
return (
<tr key={index}>
Expand Down

0 comments on commit 402c194

Please sign in to comment.