Skip to content

Commit

Permalink
[frontend] Fix filters layout is incorrect in feeds (#4646)
Browse files Browse the repository at this point in the history
  • Loading branch information
SouadHadjiat authored Oct 18, 2023
1 parent 6a52688 commit 7ea2863
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ const FeedCreation = (props) => {
label={t('Include headers in the feed')}
containerstyle={{ marginTop: 20 }}
/>
<div style={{ marginTop: 35 }}>
<div style={{ paddingTop: 35 }}>
<Filters
variant="text"
availableFilterKeys={[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ const FeedEditionContainer = (props) => {
label={t('Include headers in the feed')}
containerstyle={{ marginTop: 20 }}
/>
<div style={{ marginTop: 35 }}>
<div style={{ paddingTop: 35 }}>
<Filters
variant="text"
availableFilterKeys={[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const StreamCollectionCreation = (props) => {
/>
)}
</Alert>
<div style={{ marginTop: 35 }}>
<div style={{ paddingTop: 35 }}>
<Filters
variant="text"
availableFilterKeys={[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ const StreamCollectionEditionContainer = ({ streamCollection }) => {
/>
)}
</Alert>
<div style={{ marginTop: 35 }}>
<div style={{ paddingTop: 35 }}>
<Filters
variant="text"
availableFilterKeys={[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ const TaxiiCollectionCreation = (props) => {
/>
)}
</Alert>
<div style={{ marginTop: 35 }}>
<div style={{ paddingTop: 35 }}>
<Filters
variant="text"
availableFilterKeys={[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const TaxiiCollectionEditionContainer = (props) => {
/>
)}
</Alert>
<div style={{ marginTop: 35 }}>
<div style={{ paddingTop: 35 }}>
<Filters
variant="text"
availableFilterKeys={[
Expand Down

0 comments on commit 7ea2863

Please sign in to comment.