Skip to content

Commit

Permalink
Review changes: ipad tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemBaskal committed Jun 17, 2020
1 parent 12dddcc commit 62da979
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion client/src/components/Logs/Cells/getHintElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ const getHintElement = ({
columnClass={columnClass}
contentItemClass={contentItemClass}
title={title}
place={place} content={content}
place={place}
content={content}
trigger={trigger}
overridePosition={overridePosition}
scrollHide={scrollHide}
Expand Down
8 changes: 7 additions & 1 deletion client/src/components/Logs/Filters/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,13 @@ const Form = (props) => {
const zeroDelaySubmit = () => setTimeout(submit, 0);

return (
<form className="d-flex flex-wrap form-control--container">
<form className="d-flex flex-wrap form-control--container"
onSubmit={(e) => {
e.preventDefault();
zeroDelaySubmit();
debouncedSubmit.cancel();
}}
>
<Field
id="search"
name="search"
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Logs/Tooltip/ReactTooltip.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
padding-top: 1rem;
}

@media (max-width: 768px) {
@media (max-width: 767.98px) {
.grid {
grid-template-columns: 35% 55%;
}
Expand Down

0 comments on commit 62da979

Please sign in to comment.