Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Composer/packages/client/src/pages/skills/skill-settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,13 @@ const SkillSettings: React.FC<ISkillFormProps> = (props) => {
...skillSettings,
[event.target.id]: event.target.value,
};

// auto fill `botId` with `MicrosoftAppId`
if (event.target.id === 'MicrosoftAppId') {
localSettings.botId = event.target.value;
}

setSkillSettings({ ...localSettings });
console.log('ehh', localSettings);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks

props.setSettings(props.projectId, { ...props.settings, ...localSettings });
};

Expand Down