Skip to content

Commit b6940b5

Browse files
committed
Fix: Transforms panel crash
1 parent 66f2c9d commit b6940b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/fields/DataSelector.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class UnconnectedDataSelector extends Component {
3030
this.srcAttr = props.attr + 'src';
3131
this.srcProperty = nestedProperty(props.container, this.srcAttr).get();
3232
this.fullValue = this.context.srcConverters
33-
? this.context.srcConverters.toSrc(this.srcProperty, props.container.type)
33+
? this.context.srcConverters.toSrc(this.srcProperty, props.container?.type)
3434
: this.srcProperty;
3535

3636
this.is2D = false;

0 commit comments

Comments
 (0)