fix: Fix typeorm .save usage (no-changelog) (#8678)
This commit is contained in:
@@ -27,7 +27,7 @@ export class TagService {
|
||||
|
||||
await this.externalHooks.run(`tag.before${action}`, [tag]);
|
||||
|
||||
const savedTag = this.tagRepository.save(tag);
|
||||
const savedTag = this.tagRepository.save(tag, { transaction: false });
|
||||
|
||||
await this.externalHooks.run(`tag.after${action}`, [tag]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user