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, subspaces,
newSpace, newSpace,
queryRunner, queryRunner,
tags, null,
projectUuid, projectUuid,
) )
: Promise.resolve(), : Promise.resolve(),
@ -751,7 +751,7 @@ export class SpaceService {
subspaces, subspaces,
space, space,
queryRunner, queryRunner,
tags, null,
projectUuid, projectUuid,
); );
} }

View File

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

View File

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