diff --git a/frontend/src/Editor.svelte b/frontend/src/Editor.svelte
index 40f243a..ad48a12 100644
--- a/frontend/src/Editor.svelte
+++ b/frontend/src/Editor.svelte
@@ -153,7 +153,7 @@
{cat}
{/each}
-
+
{:else}
Nothing selected...
{/if}
diff --git a/frontend/src/TaskDisplay.svelte b/frontend/src/TaskDisplay.svelte
index 1b16866..79c34b0 100644
--- a/frontend/src/TaskDisplay.svelte
+++ b/frontend/src/TaskDisplay.svelte
@@ -1,7 +1,14 @@
- {#if task != null}
- {#await grabAssignment(nonNull(task))}
+ {#if taskId != null}
+ {#await grabAssignment(nonNull(taskId))}
Načítám úlohu
{:then task}
{@html task.titleHtml}
-
{@html task.description}
+
+
{/await}
{/if}
diff --git a/frontend/src/TaskPanel.svelte b/frontend/src/TaskPanel.svelte
index 43f4743..bbd3f9d 100644
--- a/frontend/src/TaskPanel.svelte
+++ b/frontend/src/TaskPanel.svelte
@@ -38,6 +38,7 @@ import TaskDisplay from "./TaskDisplay.svelte";
overflow: hidden;
padding: 0 100px 0 100px;
box-sizing: border-box;
+ z-index: 120;
}
.panel.collapsed:not(:hover) {
display: none;
@@ -54,7 +55,7 @@ import TaskDisplay from "./TaskDisplay.svelte";
selectedTask && select(selectedTask)}>
-
+