Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion Composer/packages/client/src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export const DialogInfo = {
};

export const DialogDeleting = {
NO_LINKED_TITLE: formatMessage('This action cannot be undone. Do you wish to continue?'),
NO_LINKED_TITLE: formatMessage('This will delete the Dialog and its contents. Do you wish to continue?'),
TITLE: formatMessage('Warning!'),
CONTENT: formatMessage(
`The dialog you have tried to delete is currently used in the below dialog(s). Removing this dialog will cause your Bot to malfunction without additional action.`
Expand Down
2 changes: 1 addition & 1 deletion Composer/packages/client/src/pages/design/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ function DesignPage(props) {
{triggerButtonVisible && (
<div css={middleTriggerContainer}>
<div css={middleTriggerElements}>
{formatMessage(`This dialog has no trigger yet.`)}
{formatMessage(`This dialog has no triggers configured`)}
<ActionButton
data-testid="MiddleAddNewTriggerButton"
iconProps={addIconProps}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const RecognizerField: React.FC<FieldProps<MicrosoftIRecognizer>> = props
},
{
key: 'luis',
text: 'BF Language Understanding',
text: 'LUIS',
},
{
key: 'regex',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"autoEndDialog": true,
"generator": "common.lg",
"$schema": "../../app.schema",
"recognizer": "Main.lu",
"rules": [
{
"$type": "Microsoft.OnUnknownIntent",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"description": "<Fill in the description of your bot here>"
},
"generator": "common.lg",
"recognizer": "Main.lu",
"rules": [
{
"$type": "Microsoft.OnConversationUpdateActivity",
Expand Down
10 changes: 9 additions & 1 deletion Composer/packages/server/src/store/dialogTemplate.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"$schema": "../../BotProject/CSharp/Schemas/app.schema",
"$type": "Microsoft.AdaptiveDialog"
"$type": "Microsoft.AdaptiveDialog",
"events": [
{
"$type": "Microsoft.OnBeginDialog",
"$designer": {
"name": "BeginDialog"
}
}
]
}