-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b09594
commit c90958d
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
...ed-block/src/components/Blocks/FeaturedBlock/Variations/FeaturedViewImageLeftRichText.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { FeaturedBaseView } from './FeaturedBaseView'; | ||
import { LEFT } from '../constants'; | ||
export const FeaturedViewImageLeftRichText = (props) => { | ||
return <FeaturedBaseView {...props} imagePosition={LEFT} richText={true} /> | ||
return <FeaturedBaseView {...props} imagePosition={LEFT} richText={true} />; | ||
}; |
2 changes: 1 addition & 1 deletion
2
...-featured-block/src/components/Blocks/FeaturedBlock/Variations/FeaturedViewImageRight.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { FeaturedBaseView } from './FeaturedBaseView'; | ||
import { RIGHT } from '../constants'; | ||
export const FeaturedViewImageRight = (props) => { | ||
return <FeaturedBaseView {...props} imagePosition={RIGHT} /> | ||
return <FeaturedBaseView {...props} imagePosition={RIGHT} />; | ||
}; |
2 changes: 1 addition & 1 deletion
2
...d-block/src/components/Blocks/FeaturedBlock/Variations/FeaturedViewImageRightRichText.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { FeaturedBaseView } from './FeaturedBaseView'; | ||
import { RIGHT } from '../constants'; | ||
import { RIGHT } from '../constants'; | ||
export const FeaturedViewImageRightRichText = (props) => { | ||
return <FeaturedBaseView {...props} imagePosition={RIGHT} richText={true} />; | ||
}; |
2 changes: 1 addition & 1 deletion
2
packages/volto-featured-block/src/components/Blocks/FeaturedBlock/constants.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export const LEFT = 'LEFT'; | ||
export const RIGHT = 'RIGHT'; | ||
export const RIGHT = 'RIGHT'; |