Skip to content

Commit

Permalink
Fix column title
Browse files Browse the repository at this point in the history
  • Loading branch information
avoinea committed Nov 24, 2020
1 parent c2a96b4 commit d190c26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/manage/Blocks/Accordion/AccordionEdit.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default (props) => {
className="input-accordion-title"
transparent
placeholder="Enter Title"
value={column?.blocks_layout?.title}
value={column?.title}
onClick={(e) => {
handleTitleClick();
e.stopPropagation();
Expand Down
2 changes: 1 addition & 1 deletion src/components/manage/Blocks/Accordion/View.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const View = (props) => {
})}
/>
)}
<label>{column?.blocks_layout?.title}</label>
<label>{column?.title}</label>
</Accordion.Title>
<Accordion.Content active={activeIndex === index}>
<AnimateHeight
Expand Down

0 comments on commit d190c26

Please sign in to comment.