Fix save project description

This commit is contained in:
Mattias Granlund 2024-03-21 23:13:14 +01:00
parent f285579113
commit 1bd2dfda2e

View File

@ -38,8 +38,8 @@
rows={3}
placeholder="Project description"
bind:value={description}
on:change={(e) => {
project.description = e.detail;
on:change={() => {
project.description = description;
dispatch('updated', project);
}}
/>