Skip to content

Commit fdda02a

Browse files
committed
Add attr check as well
1 parent 42c7ad6 commit fdda02a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/fields/MultiFormatTextEditor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import {connectToContainer} from 'lib';
66

77
export class UnconnectedMultiFormatTextEditor extends Component {
88
render() {
9-
const {multiValued, container} = this.props;
9+
const {multiValued, container, attr} = this.props;
1010
let fullValue = this.props.fullValue;
1111

1212
let placeholder;
13-
if (multiValued || !container.title) {
13+
if (multiValued || (!container.title && attr === 'title')) {
1414
placeholder = fullValue;
1515
fullValue = '';
1616
}

0 commit comments

Comments
 (0)