fix editor file handling

This commit is contained in:
Philipinho
2024-06-22 03:33:54 +01:00
parent 2aec5a3fe7
commit df1840cf67
12 changed files with 71 additions and 75 deletions

View File

@ -1,6 +1,6 @@
import { NodeViewProps, NodeViewWrapper } from "@tiptap/react";
import { useMemo } from "react";
import { getBackendUrl } from "@/lib/config.ts";
import { getFileUrl } from "@/lib/config.ts";
export default function VideoView(props: NodeViewProps) {
const { node, selected } = props;
@ -24,7 +24,7 @@ export default function VideoView(props: NodeViewProps) {
preload="metadata"
width={width}
controls
src={getBackendUrl() + src}
src={getFileUrl(src)}
className={selected && "ProseMirror-selectednode"}
/>
</NodeViewWrapper>