Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Draft
19 changes: 19 additions & 0 deletions newIDE/app/public/res/functions/boolean_black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions newIDE/app/public/res/functions/number_black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions newIDE/app/public/res/functions/string_black.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion newIDE/app/src/BehaviorTypeSelector/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ type Props = {|
objectType: string,
value: string,
onChange: string => void,
onFocus?: (event: SyntheticFocusEvent<HTMLInputElement>) => void,
disabled?: boolean,
eventsFunctionsExtension: gdEventsFunctionsExtension | null,
|};
Expand All @@ -33,7 +34,7 @@ export default class BehaviorTypeSelector extends React.Component<
};

render() {
const { disabled, objectType, value, onChange } = this.props;
const { disabled, objectType, value, onChange, onFocus } = this.props;
const { behaviorMetadata } = this.state;

// If the behavior type is not in the list, we'll still
Expand All @@ -48,6 +49,7 @@ export default class BehaviorTypeSelector extends React.Component<
onChange={(e, i, value: string) => {
onChange(value);
}}
onFocus={onFocus}
disabled={disabled}
fullWidth
>
Expand Down

This file was deleted.

Loading