Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
m-akinc committed Jul 18, 2024
1 parent 320c43a commit 1a0ce2b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/nimble-components/src/select/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ export class Select
o => !o.disabled
);
let activeOptionIndex = this.filter !== ''
? this.openActiveIndex ?? this.selectedIndex
? (this.openActiveIndex ?? this.selectedIndex)
: this.selectedIndex;

if (
Expand Down
4 changes: 2 additions & 2 deletions packages/storybook/src/nimble/card-button/card-button.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import * as cardButtonStories from './card-button.stories';
The <Tag name={cardButtonTag}/> is a button that is designed to contain
arbitrary content that is specified by a client application. The

<Tag name={cardButtonTag} /> is intended to be larger and more prominent on a page
than the standard <Tag name={buttonTag} />.
<Tag name={cardButtonTag} /> is intended to be larger and more prominent on a
page than the standard <Tag name={buttonTag} />.

If you want a button that triggers navigation to a URL, use the

Expand Down
4 changes: 2 additions & 2 deletions packages/storybook/src/nimble/theme-provider/color.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Base colors are defined by the visual design team, managed in the
<a href="https://xd.adobe.com/view/33ffad4a-eb2c-4241-b8c5-ebfff1faf6f6-66ac/screen/89e665af-d24c-4f5e-b547-294caeccd29a">
Nimble_Component
</a>
Adobe XD spec, and exported in `nimble-tokens`. Most client applications shouldn't
use these tokens directly. See the
Adobe XD spec, and exported in `nimble-tokens`. Most client applications
shouldn't use these tokens directly. See the
<a href="https://github.com/ni/nimble/tree/main/packages/nimble-tokens">
nimble-token
</a>
Expand Down

0 comments on commit 1a0ce2b

Please sign in to comment.