diff --git a/frontend/src/lib/components/project/Column.svelte b/frontend/src/lib/components/project/Column.svelte
index a4943d8..d368bcc 100644
--- a/frontend/src/lib/components/project/Column.svelte
+++ b/frontend/src/lib/components/project/Column.svelte
@@ -1,65 +1,56 @@
+
{
e.preventDefault();
}}
@@ -70,16 +61,17 @@
type="text"
on:blur={async () => {
if (lastTitle === title) return;
- if (!optionId || !primary_tag_id) return;
- await updateTagOptionAPI({
- id: optionId,
- tag_id: primary_tag_id,
- value: title
- });
- lastTitle = title;
- cards.reload();
+ if (!option || !primaryTag) return;
+ // option;
+ // await updateTagOptionAPI({
+ // id: optionId,
+ // tag_id: primary_tag_id,
+ // value: title
+ // });
+ // lastTitle = title;
+ // cards.reload();
}}
- disabled={optionId === null}
+ disabled={option === null}
/>
{columnCards.length}
diff --git a/frontend/src/lib/components/project/Project.svelte b/frontend/src/lib/components/project/Project.svelte
index aa0fe4b..008f1ac 100644
--- a/frontend/src/lib/components/project/Project.svelte
+++ b/frontend/src/lib/components/project/Project.svelte
@@ -1,6 +1,8 @@