fix the issue in create space

This commit is contained in:
hannathkadher
2025-03-07 00:28:18 +04:00
parent 61fc699cf8
commit 31e84b4a25
3 changed files with 5 additions and 2 deletions

View File

@ -134,7 +134,7 @@ export class SpaceService {
subspaces,
newSpace,
queryRunner,
tags,
null,
projectUuid,
)
: Promise.resolve(),
@ -751,7 +751,7 @@ export class SpaceService {
subspaces,
space,
queryRunner,
tags,
null,
projectUuid,
);
}

View File

@ -124,6 +124,7 @@ export class SubSpaceService {
projectUuid,
queryRunner,
);
await this.subspaceProductAllocationService.createSubspaceProductAllocations(
subspace,
processedTags,

View File

@ -160,6 +160,7 @@ export class TagService {
return allTags;
} catch (error) {
console.error(error);
throw new HttpException(
error instanceof HttpException
? error.message
@ -232,6 +233,7 @@ export class TagService {
return newTags;
} catch (error) {
console.error(error);
throw new HttpException(
error instanceof HttpException
? error.message