Skip to content

Commit

Permalink
fix(sdd): remove space and person-select story example
Browse files Browse the repository at this point in the history
  • Loading branch information
eikeland committed Jan 23, 2025
1 parent 6cc4ed9 commit 41f794d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/searchable-dropdown/src/dropdown/element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ export class SearchableDropdownElement
@input=${this.controller.handleKeyup}
></fwc-textinput>
<slot name="trailing">
<span slot="trailing"> ${this.renderCloseIcon()} </span>
<span slot="trailing">${this.renderCloseIcon()} </span>
</slot>
</div>
<div class="list">
Expand Down
3 changes: 2 additions & 1 deletion storybook/stories/person/person-select.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ export const SetSelectedPersonAttributeWithAzureId: Story = {
export const SetSelectedPersonAttributeWithPersonInfo: Story = {
args: {
// selectedPerson: JSON.stringify({ azureID: '49132c24-6ea4-41fe-8221-112f314573f0' }),
selectedPerson: '{"azureId":"49132c24-6ea4-41fe-8221-112f314573f0"}',
selectedPerson:
'{"azureId": "b4f6b901-902e-486a-979e-86d8eeee6365", "upn": "[email protected]", "name": "Naomi Steuber", "accountType": "Consultant", "accountClassification": "External", "jobTitle": "Product Assurance Representative", "department": "Automotive", "mail": "[email protected]", "mobilePhone": "(763) 255-9520", "officeLocation": "Catherinefield", "positions": [], "manager": { "azureUniqueId": "8da7cab8-5c43-4c99-9689-8c22501f6071","name": "Allan Kulas","department": "Health"}',
},
render,
};
Expand Down

0 comments on commit 41f794d

Please sign in to comment.