diff --git a/src/shared/containers/timeline-wall/timeline-events/right-filter/styles.scss b/src/shared/containers/timeline-wall/timeline-events/right-filter/styles.scss index 6cd6cf43e5..ce83f8f22d 100644 --- a/src/shared/containers/timeline-wall/timeline-events/right-filter/styles.scss +++ b/src/shared/containers/timeline-wall/timeline-events/right-filter/styles.scss @@ -50,12 +50,24 @@ display: flex; flex-direction: column; width: 120px; - border-radius: 8px; + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; padding: 10px 0; position: fixed; right: 0; + left: 1374px; max-height: 70%; overflow: scroll; + -ms-overflow-style: none; /* Internet Explorer 10+ */ + scrollbar-width: none; /* Firefox */ + + &::-webkit-scrollbar { + display: none; /* Safari and Chrome */ + } + + @media (max-width: 1500px) { + left: unset; + } @media (max-width: 768px) { border-radius: 0; diff --git a/src/shared/services/timelineWall.js b/src/shared/services/timelineWall.js index 7ca916e706..fd7865a887 100644 --- a/src/shared/services/timelineWall.js +++ b/src/shared/services/timelineWall.js @@ -182,7 +182,10 @@ export const rejectEventById = async (tokenV3, id, body, successFn) => { try { fetch(`${baseUrl}/timelineEvents/${id}/reject`, { method: 'PUT', - headers: { Authorization: `Bearer ${tokenV3}` }, + headers: { + Authorization: `Bearer ${tokenV3}`, + 'Content-Type': 'application/json; charset=utf-8', + }, body: JSON.stringify(body), }).then(() => { successFn();