diff --git a/tdrive/frontend/src/app/molecules/grouped-rows/base/index.stories.tsx b/tdrive/frontend/src/app/molecules/grouped-rows/base/index.stories.tsx index df5ba675..8f8b5dbb 100644 --- a/tdrive/frontend/src/app/molecules/grouped-rows/base/index.stories.tsx +++ b/tdrive/frontend/src/app/molecules/grouped-rows/base/index.stories.tsx @@ -7,7 +7,7 @@ import Avatar from '@atoms/avatar'; import { CheckIcon } from '@atoms/icons-agnostic'; export default { - title: '@molecules/avatar-block', + title: '@molecules/grouped-rows', }; const Template: ComponentStory = (props: { diff --git a/tdrive/frontend/src/app/molecules/grouped-rows/channel/index.stories.tsx b/tdrive/frontend/src/app/molecules/grouped-rows/channel/index.stories.tsx index 44519b15..3a99518d 100644 --- a/tdrive/frontend/src/app/molecules/grouped-rows/channel/index.stories.tsx +++ b/tdrive/frontend/src/app/molecules/grouped-rows/channel/index.stories.tsx @@ -5,7 +5,7 @@ import ChannelBlock from '.'; import Avatar from '@atoms/avatar'; export default { - title: '@molecules/avatar-block', + title: '@molecules/grouped-rows', }; const Template: ComponentStory = (props: { diff --git a/tdrive/frontend/src/app/molecules/grouped-rows/company/index.stories.tsx b/tdrive/frontend/src/app/molecules/grouped-rows/company/index.stories.tsx index 8410dd25..92ddc415 100644 --- a/tdrive/frontend/src/app/molecules/grouped-rows/company/index.stories.tsx +++ b/tdrive/frontend/src/app/molecules/grouped-rows/company/index.stories.tsx @@ -7,7 +7,7 @@ import Avatar from '@atoms/avatar'; import { CheckIcon } from '@atoms/icons-agnostic'; export default { - title: '@molecules/avatar-block', + title: '@molecules/grouped-rows', }; const Template: ComponentStory = (props: { diff --git a/tdrive/frontend/src/app/molecules/grouped-rows/user/index.stories.tsx b/tdrive/frontend/src/app/molecules/grouped-rows/user/index.stories.tsx index 16488073..566c0d8e 100644 --- a/tdrive/frontend/src/app/molecules/grouped-rows/user/index.stories.tsx +++ b/tdrive/frontend/src/app/molecules/grouped-rows/user/index.stories.tsx @@ -7,7 +7,7 @@ import Avatar from '@atoms/avatar'; import { CheckIcon } from '@atoms/icons-agnostic'; export default { - title: '@molecules/avatar-block', + title: '@molecules/grouped-rows', }; const Template: ComponentStory = (props: { diff --git a/tdrive/frontend/src/app/molecules/grouped-rows/user/index.tsx b/tdrive/frontend/src/app/molecules/grouped-rows/user/index.tsx index 3dec0fec..38606e4e 100644 --- a/tdrive/frontend/src/app/molecules/grouped-rows/user/index.tsx +++ b/tdrive/frontend/src/app/molecules/grouped-rows/user/index.tsx @@ -3,7 +3,7 @@ import React from 'react'; import BaseBlock from '@molecules/grouped-rows/base'; // @ts-ignore -interface BlockProps extends React.InputHTMLAttributes { +interface UserBlockProps extends React.InputHTMLAttributes { avatar: JSX.Element; title: JSX.Element | string; subtitle: JSX.Element | string; @@ -11,6 +11,6 @@ interface BlockProps extends React.InputHTMLAttributes { className?: string; } -export default function Workspace(props: BlockProps) { +export default function UserBlock(props: UserBlockProps) { return BaseBlock(props); } diff --git a/tdrive/frontend/src/app/molecules/grouped-rows/workspace/index.stories.tsx b/tdrive/frontend/src/app/molecules/grouped-rows/workspace/index.stories.tsx index 63e17bd6..a6815e9e 100644 --- a/tdrive/frontend/src/app/molecules/grouped-rows/workspace/index.stories.tsx +++ b/tdrive/frontend/src/app/molecules/grouped-rows/workspace/index.stories.tsx @@ -7,7 +7,7 @@ import Avatar from '@atoms/avatar'; import { CheckIcon } from '@atoms/icons-agnostic'; export default { - title: '@molecules/avatar-block', + title: '@molecules/grouped-rows', }; const Template: ComponentStory = (props: {