mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-08-15 12:05:19 +08:00
Added collapsable text for text that's too long
This commit is contained in:
@@ -17,6 +17,7 @@ import {
|
||||
verticalListSortingStrategy,
|
||||
} from "@dnd-kit/sortable";
|
||||
import { ReactNode, useEffect, useState } from "react";
|
||||
import { CollapsableText } from "../CollapsableText";
|
||||
|
||||
import { SortableItem } from "./SortableItem";
|
||||
|
||||
@@ -61,7 +62,7 @@ export const Sortable = ({ items, onChange }: SortableProps) => {
|
||||
<Flex direction="column" gap={2}>
|
||||
{itemsWithIds.map(({ id, item }) => (
|
||||
<SortableItem key={id} id={id}>
|
||||
{item}
|
||||
<CollapsableText text={item} />
|
||||
</SortableItem>
|
||||
))}
|
||||
</Flex>
|
||||
|
||||
Reference in New Issue
Block a user