Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,11 @@ export function CreateBotV2(props: CreateBotProps) {
}}
>
<PivotItem data-testid="dotnetFeed" headerText="C#" itemKey={csharpFeedKey}></PivotItem>
<PivotItem data-testid="nodeFeed" headerText="Node" itemKey={nodeFeedKey}></PivotItem>
<PivotItem
data-testid="nodeFeed"
headerText={formatMessage('Node (Preview)')}
itemKey={nodeFeedKey}
></PivotItem>
</Pivot>
<div css={pickerContainer}>
<div css={detailListContainer} data-is-scrollable="true" id="templatePickerContainer">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ const DefineConversationV2: React.FC<DefineConversationProps> = (props) => {
if (!value || !nameRegexV2.test(`${value}`)) {
// botName is used as used when generating runtime namespaces which cannot start with a number
if (value && !isNaN(+value.toString().charAt(0))) {
return formatMessage('Bot name cannot not start with a number');
return formatMessage('Bot name cannot start with a number or space');
} else {
return formatMessage('Spaces and special characters are not allowed. Use letters, numbers, or _.');
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export const CreateQnAFromUrlModal: React.FC<CreateQnAFromUrlModalProps> = (prop
}}
hidden={false}
modalProps={{
isBlocking: false,
isBlocking: true,
styles: styles.modalCreateFromUrl,
}}
onDismiss={handleDismiss}
Expand Down
2 changes: 1 addition & 1 deletion Composer/packages/client/src/pages/publish/Publish.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const Publish: React.FC<RouteComponentProps<{ projectId: string; targetName?: st

const botStatusList = useMemo(() => {
return generateBotStatusList(currentBotList, botPropertyData, publishHistoryList);
}, [currentBotList, botPropertyData, publishHistoryList]);
}, [currentBotList, botPropertyData, publishHistoryList, botProjectData]);

const isPublishPending = useMemo(() => {
return Object.values(updaterStatus).some(Boolean);
Expand Down