Skip to content
Snippets Groups Projects
Commit 45fc6f81 authored by Aymeric Chaumont's avatar Aymeric Chaumont
Browse files

Merge branch 'css_fix' into 'main'

info button

See merge request !36
parents 72b243de 9eecfd85
No related branches found
No related tags found
1 merge request!36info button
Pipeline #44020 passed
...@@ -88,6 +88,10 @@ export default function Messages({ place, infos }) { ...@@ -88,6 +88,10 @@ export default function Messages({ place, infos }) {
.then((res) => { .then((res) => {
setMessages(res.data); setMessages(res.data);
setLoading(false); setLoading(false);
if (!width && infos && res.data.length) {
let otherIcon = document.getElementById("comments-icon-left");
otherIcon.style.cssText = "border: 1px solid red";
}
}) })
.catch((e) => { .catch((e) => {
console.log(e); console.log(e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment