Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Used custom dropdown from paperbits in widget editor #2118

Merged
merged 1 commit into from
Feb 27, 2023
Merged
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
16 changes: 8 additions & 8 deletions src/components/users/signin-social/ko/signinSocialEditor.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<button class="btn btn-info" type="button" title="Help"
data-bind="tooltip: 'Custom reply URL. If not specified, current page URL will be used.'"></button>
</label>
<input type="text" class="form-control" placeholder="e.g. https://contoso.com/signin" data-bind="textInput: aadReplyUrl"
maxlength="2000" />
<input type="text" class="form-control" placeholder="e.g. https://contoso.com/signin"
data-bind="textInput: aadReplyUrl" maxlength="2000" />
</div>
</div>
</div>
Expand All @@ -46,8 +46,8 @@
<button class="btn btn-info" type="button" title="Help"
data-bind="tooltip: 'Custom reply URL. If not specified, current page URL will be used.'"></button>
</label>
<input type="text" class="form-control" placeholder="e.g. https://contoso.com/signin" data-bind="textInput: aadB2CReplyUrl"
maxlength="2000" />
<input type="text" class="form-control" placeholder="e.g. https://contoso.com/signin"
data-bind="textInput: aadB2CReplyUrl" maxlength="2000" />
</div>
</div>
</div>
Expand All @@ -63,10 +63,10 @@
<button class="btn btn-info" type="button" title="Help"
data-bind="tooltip: 'Predefined appearance from style guide.'"></button>
</label>
<div class="input-group">
<select id="appearanceStyle" class="form-control"
data-bind="options: appearanceStyles, value: appearanceStyle, optionsText: 'displayName', optionsValue: 'key'"></select>
</div>
<dropdown id="appearanceStyle"
params="{ options: appearanceStyles, value: appearanceStyle, optionsText: 'displayName', optionsValue: 'key' }"
aria-label="Appearance">
</dropdown>
</div>
<role-input params="{ selection: model.security.roles, onChange: onRoleSelect }"></role-input>
</div>
Expand Down