-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Style update to in-progress drop-down (#2986)
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
extensions/ql-vscode/src/stories/model-editor/InProgressDropdown.stories.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import * as React from "react"; | ||
|
||
import { Meta, StoryFn } from "@storybook/react"; | ||
|
||
import { InProgressDropdown as InProgressDropdownComponent } from "../../view/model-editor/InProgressDropdown"; | ||
|
||
export default { | ||
title: "CodeQL Model Editor/In Progress Dropdown", | ||
component: InProgressDropdownComponent, | ||
} as Meta<typeof InProgressDropdownComponent>; | ||
|
||
const Template: StoryFn<typeof InProgressDropdownComponent> = (args) => ( | ||
<InProgressDropdownComponent /> | ||
); | ||
|
||
export const InProgressDropdown = Template.bind({}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 6 additions & 1 deletion
7
extensions/ql-vscode/src/view/model-editor/InProgressDropdown.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters