Skip to content

Commit fde57f9

Browse files
committed
chore: merge branch 'main' of github.com:coder/coder into bq/refactor-index
2 parents ac4c4a6 + 6c9c129 commit fde57f9

17 files changed

+24
-16
lines changed

site/htmlTemplates/index.html

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
<!DOCTYPE html>
22

3+
<!--
4+
▄█▀ ▀█▄
5+
▄▄ ▀▀▀ █▌ ██▀▀█▄ ▐█
6+
▄▄██▀▀█▄▄▄ ██ ██ █▀▀█ ▐█▀▀██ ▄█▀▀█ █▀▀
7+
█▌ ▄▌ ▐█ █▌ ▀█▄▄▄█▌ █ █ ▐█ ██ ██▀▀ █
8+
██████▀▄█ ▀▀▀▀ ▀▀▀▀ ▀▀▀▀▀ ▀▀▀▀ ▀
9+
-->
10+
311
<head>
412
<meta charset="utf-8" />
513
<meta name="viewport" content="width=device-width, initial-scale=1" />

site/src/components/Button/LoadingButton.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react"
33
import { LoadingButton, LoadingButtonProps } from "./LoadingButton"
44

55
export default {
6-
title: "Button/LoadingButton",
6+
title: "components/LoadingButton",
77
component: LoadingButton,
88
argTypes: {
99
loading: { control: { type: "boolean" } },

site/src/components/CodeBlock/CodeBlock.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Started container user
99
Using user 'coder' with shell '/bin/bash'`.split("\n")
1010

1111
export default {
12-
title: "CodeBlock/CodeBlock",
12+
title: "components/CodeBlock",
1313
component: CodeBlock,
1414
argTypes: {
1515
lines: { control: "text", defaultValue: sampleLines },

site/src/components/CodeExample/CodeExample.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { CodeExample, CodeExampleProps } from "./CodeExample"
55
const sampleCode = `echo "Hello, world"`
66

77
export default {
8-
title: "CodeBlock/CodeExample",
8+
title: "components/CodeExample",
99
component: CodeExample,
1010
argTypes: {
1111
code: { control: "string", defaultValue: sampleCode },

site/src/components/Form/FormCloseButton.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react"
33
import { FormCloseButton, FormCloseButtonProps } from "./FormCloseButton"
44

55
export default {
6-
title: "Form/FormCloseButton",
6+
title: "components/FormCloseButton",
77
component: FormCloseButton,
88
argTypes: {
99
onClose: { action: "onClose" },

site/src/components/Navbar/UserDropdown/UserDropdown.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import React from "react"
44
import { UserDropdown, UserDropdownProps } from "./UsersDropdown"
55

66
export default {
7-
title: "Page/UserDropdown",
7+
title: "components/UserDropdown",
88
component: UserDropdown,
99
argTypes: {
1010
onSignOut: { action: "Sign Out" },

site/src/components/Section/SectionView.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import React from "react"
55
import { Section, SectionProps } from "./Section"
66

77
export default {
8-
title: "Page/Section",
8+
title: "components/Section",
99
component: Section,
1010
argTypes: {
1111
title: { type: "string" },

site/src/components/SignIn/CliAuthToken.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react"
33
import { CliAuthToken, CliAuthTokenProps } from "./CliAuthToken"
44

55
export default {
6-
title: "SignIn/CliAuthToken",
6+
title: "components/CliAuthToken",
77
component: CliAuthToken,
88
argTypes: {
99
sessionToken: { control: "text", defaultValue: "some-session-token" },

site/src/components/SignIn/SignInForm.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react"
33
import { SignInForm, SignInFormProps } from "./SignInForm"
44

55
export default {
6-
title: "SignIn/SignInForm",
6+
title: "components/SignInForm",
77
component: SignInForm,
88
argTypes: {
99
isLoading: "boolean",

site/src/components/Snackbar/EnterpriseSnackbar.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react"
33
import { EnterpriseSnackbar, EnterpriseSnackbarProps } from "./EnterpriseSnackbar"
44

55
export default {
6-
title: "Snackbar/EnterpriseSnackbar",
6+
title: "components/EnterpriseSnackbar",
77
component: EnterpriseSnackbar,
88
}
99

site/src/components/Stack/Stack.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import React from "react"
44
import { Stack, StackProps } from "./Stack"
55

66
export default {
7-
title: "Components/Stack",
7+
title: "components/Stack",
88
component: Stack,
99
}
1010

site/src/components/TabPanel/TabPanel.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react"
33
import { TabPanel, TabPanelProps } from "./TabPanel"
44

55
export default {
6-
title: "TabPanel/TabPanel",
6+
title: "components/TabPanel",
77
component: TabPanel,
88
}
99

site/src/components/TabPanel/TabSidebar.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from "react"
33
import { TabSidebar, TabSidebarProps } from "./TabSidebar"
44

55
export default {
6-
title: "TabPanel/TabSidebar",
6+
title: "components/TabSidebar",
77
component: TabSidebar,
88
}
99

site/src/components/Table/Cells/UserCell.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { MockUser, MockUserAgent } from "../../../testHelpers"
44
import { UserCell, UserCellProps } from "./UserCell"
55

66
export default {
7-
title: "Table/Cells/UserCell",
7+
title: "components/UserCell",
88
component: UserCell,
99
} as ComponentMeta<typeof UserCell>
1010

site/src/components/UsersTable/UsersTable.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { MockUser, MockUser2 } from "../../testHelpers"
44
import { UsersTable, UsersTableProps } from "./UsersTable"
55

66
export default {
7-
title: "Components/UsersTable",
7+
title: "components/UsersTable",
88
component: UsersTable,
99
} as ComponentMeta<typeof UsersTable>
1010

site/src/components/Workspace/Workspace.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { MockOrganization, MockTemplate, MockWorkspace } from "../../testHelpers
44
import { Workspace, WorkspaceProps } from "./Workspace"
55

66
export default {
7-
title: "Workspaces/Workspace",
7+
title: "components/Workspace",
88
component: Workspace,
99
argTypes: {},
1010
}

site/src/components/Workspace/WorkspaceSchedule.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { MockWorkspaceAutostartEnabled } from "../../testHelpers"
44
import { WorkspaceSchedule, WorkspaceScheduleProps } from "./WorkspaceSchedule"
55

66
export default {
7-
title: "Workspaces/WorkspaceSchedule",
7+
title: "components/WorkspaceSchedule",
88
component: WorkspaceSchedule,
99
}
1010

0 commit comments

Comments
 (0)