|
@@ -1,6 +1,6 @@
|
|
import { SettingsSvg } from '../_shared/svg/SettingsSvg';
|
|
import { SettingsSvg } from '../_shared/svg/SettingsSvg';
|
|
import { SearchInput } from '../_shared/SearchInput';
|
|
import { SearchInput } from '../_shared/SearchInput';
|
|
-import { BoardBlock } from './BoardBlock';
|
|
|
|
|
|
+import { BoardGroup } from './BoardGroup';
|
|
import { NewBoardBlock } from './NewBoardBlock';
|
|
import { NewBoardBlock } from './NewBoardBlock';
|
|
import { useDatabase } from '../_shared/database-hooks/useDatabase';
|
|
import { useDatabase } from '../_shared/database-hooks/useDatabase';
|
|
import { ViewLayoutPB } from '@/services/backend';
|
|
import { ViewLayoutPB } from '@/services/backend';
|
|
@@ -39,7 +39,7 @@ export const Board = ({ viewId }: { viewId: string }) => {
|
|
{controller &&
|
|
{controller &&
|
|
groups &&
|
|
groups &&
|
|
groups.map((group, index) => (
|
|
groups.map((group, index) => (
|
|
- <BoardBlock
|
|
|
|
|
|
+ <BoardGroup
|
|
key={group.groupId}
|
|
key={group.groupId}
|
|
viewId={viewId}
|
|
viewId={viewId}
|
|
controller={controller}
|
|
controller={controller}
|