@@ -132,10 +135,11 @@ function GridBlockView(props: ReactNodeViewProps) {
>
{segments.map((segment, i) => {
// Markdown columns cannot be dragged out (createBlockNode would
- // turn their markdown into literal text), so only chart/table
- // columns get a move handle.
+ // turn their markdown into literal text), so only supported story
+ // block columns get a move handle.
const columnGrip =
- segments.length >= 2 && (segment.type === 'chart' || segment.type === 'table') ? (
+ segments.length >= 2 &&
+ (segment.type === 'chart' || segment.type === 'table' || segment.type === 'plugin') ? (