mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-07-15 02:15:21 +00:00
fix the issue in create space
This commit is contained in:
@ -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,
|
||||
);
|
||||
}
|
||||
|
@ -124,6 +124,7 @@ export class SubSpaceService {
|
||||
projectUuid,
|
||||
queryRunner,
|
||||
);
|
||||
|
||||
await this.subspaceProductAllocationService.createSubspaceProductAllocations(
|
||||
subspace,
|
||||
processedTags,
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user