Skip to content

Commit

Permalink
Used custom dropdown from paperbits in widget editor (#2118)
Browse files Browse the repository at this point in the history
  • Loading branch information
malincrist committed Feb 27, 2023
1 parent cdb86a7 commit 396ea23
Showing 1 changed file with 8 additions and 8 deletions.
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

0 comments on commit 396ea23

Please sign in to comment.