From b8521121a1b5febf21fb90e61d88e964fff9e53c Mon Sep 17 00:00:00 2001 From: Jaanus Sellin Date: Thu, 28 Aug 2025 11:43:46 +0300 Subject: [PATCH] fix: feature link should return same id as it sends to db (#10553) During feature link creation, we should return same id as it sends to db. --- src/lib/features/feature-links/feature-link-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/features/feature-links/feature-link-store.ts b/src/lib/features/feature-links/feature-link-store.ts index b03f619e85..3305a6a652 100644 --- a/src/lib/features/feature-links/feature-link-store.ts +++ b/src/lib/features/feature-links/feature-link-store.ts @@ -22,7 +22,7 @@ export class FeatureLinkStore async insert(item: Omit): Promise { const id = ulid(); const featureLink = { - id: ulid(), + id: id, feature_name: item.featureName, url: item.url, title: item.title,