diff --git a/README.md b/README.md index 26f33e6..8f3b632 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Uneed Badge @@ -98,7 +98,7 @@ We welcome your contributions and PRs. 5. Save and deploy the project. 6. Cancel the deployment, then navigate to **Settings** -> **Bindings** -> **Add**: - - **KV Namespace**: Bind the variable name `KV` to a KV namespace (create a new one under **Workers & Pages** -> **KV**). + - **KV Namespace**: Bind the variable name `KV` to a [KV namespace](https://developers.cloudflare.com/kv/) (create a new one under **Storage & Databases** -> **KV**). - **Workers AI** (_Optional_): Bind the variable name `AI` to the Workers AI Catalog. - **Analytics Engine**: - In **Workers & Pages**, go to **Account details** on the right side, find `Analytics Engine`, and click `Set up` to enable the free version. diff --git a/components/dashboard/links/Editor.vue b/components/dashboard/links/Editor.vue index 7f24bf7..d21912e 100644 --- a/components/dashboard/links/Editor.vue +++ b/components/dashboard/links/Editor.vue @@ -114,7 +114,7 @@ async function onSubmit(formData) { body: link, }) dialogOpen.value = false - emit('update:link', newLink) + emit('update:link', newLink, isEdit ? 'edit' : 'create') if (isEdit) { toast('Link updated successfully') }