Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class SignInSocialViewModel extends React.Component<ComponentProps, Compo
return
<placeholder-content>
<div className="not-configured">This widget will display a sign-up form when you configure <a
href="https://aka.ms/apim-how-to-aad" target="_blank">Azure Active Directory</a> or <a
href="https://aka.ms/apim-how-to-aad" target="_blank">Microsoft Entra ID</a> or <a
href="https://aka.ms/apim-how-to-aadb2c" target="_blank">Azure Active Directory B2C</a> integration in your API
Management service. This message appears only in the portal's administrative mode and the widget will be rendered as
an empty space in the published portal, so you don't need to remove it.
Expand Down
4 changes: 2 additions & 2 deletions src/components/users/signin-social/signinSocialHandlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class SigninSocialHandlers implements IWidgetHandler<SigninSocialModel> {
requires: ["html"],
createModel: async () => {
const model = new SigninSocialModel();
model.aadLabel = "Azure Active Directory";
model.aadLabel = "Microsoft Entra ID";
model.aadB2CLabel = "Azure Active Directory B2C";
return model;
}
Expand Down Expand Up @@ -61,7 +61,7 @@ export class SigninSocialHandlers implements IWidgetHandler<SigninSocialModel> {

public async getWidgetModel(): Promise<SigninSocialModel> {
const model = new SigninSocialModel();
model.aadLabel = "Azure Active Directory";
model.aadLabel = "Microsoft Entra ID";
model.aadB2CLabel = "Azure Active Directory B2C";
return model;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class SigninSocialModelBinder implements IModelBinder<SigninSocialModel>

model.security = contract.security ?? { roles: [defaultRole] };
model.styles = contract.styles || { appearance: "components/button/default" };
model.aadLabel = contract.aadLabel || "Azure Active Directory";
model.aadLabel = contract.aadLabel || "Microsoft Entra ID";
model.aadB2CLabel = contract.aadB2CLabel || "Azure Active Directory B2C";
model.aadReplyUrl = contract.aadReplyUrl;
model.aadB2CReplyUrl = contract.aadB2CReplyUrl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class SignUpSocialViewModel extends React.Component<any, any> {
if (this.state.mode !== "publishing") {
return <placeholder-content>
<div className="not-configured">This widget will display a sign-up form when you configure <a
href="https://aka.ms/apim-how-to-aad" target="_blank">Azure Active Directory</a> or <a
href="https://aka.ms/apim-how-to-aad" target="_blank">Microsoft Entra ID</a> or <a
href="https://aka.ms/apim-how-to-aadb2c" target="_blank">Azure Active Directory B2C</a> integration in your API
Management service. This message appears only in the portal's administrative mode and the widget will be rendered as
an empty space in the published portal, so you don't need to remove it.
Expand Down
2 changes: 1 addition & 1 deletion templates/default.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion templates/fui/default.json

Large diffs are not rendered by default.

Loading