diff --git a/src/components/table.jsx b/src/components/table.jsx
index 184607d..d8c036d 100644
--- a/src/components/table.jsx
+++ b/src/components/table.jsx
@@ -92,11 +92,11 @@ export default function Table(props) {
+
Comment :{" "}
{props.tableData.comment === ""
? "No comment"
- : props.tableData.comment}
+ :
}
diff --git a/src/index.css b/src/index.css
index 44afa54..e69de29 100644
--- a/src/index.css
+++ b/src/index.css
@@ -1,22 +0,0 @@
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
-
-.cm-focused {
- outline: none !important;
-}
-
-.bg-blue {
- background-color: #124559;
-}
-
-.semi-form-vertical .semi-form-field {
- margin: 0;
- padding-top: 8px !important;
- padding-bottom: 8px !important;
- overflow: hidden;
-}
-
-.semi-card .semi-collapse-item{
- border: none !important;
-}
\ No newline at end of file
diff --git a/src/pages/editor.jsx b/src/pages/editor.jsx
index 7acc0f0..6ecb9c1 100644
--- a/src/pages/editor.jsx
+++ b/src/pages/editor.jsx
@@ -1,4 +1,4 @@
-import React, { useState, createContext } from "react";
+import React, { useState, createContext, useEffect } from "react";
import Sidebar from "../components/sidebar";
import ControlPanel from "../components/control_panel";
import { DndProvider } from "react-dnd";
@@ -35,6 +35,11 @@ export default function Editor(props) {
if (w > 340) setWidth(w);
};
+ useEffect(()=>{
+ document.title = "Editor";
+ console.log("hey");
+ }, [])
+
return (