Skip to content

Commit

Permalink
style(service): formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
devformatters authored and Zeck Li committed Aug 7, 2020
1 parent a241ba7 commit 8ec5d47
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/connectors/tagService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -551,9 +551,7 @@ export class TagService extends BaseService {
*********************************/
deleteTags = async (tagIds: string[]) => {
// delete article tags
await this.knex('article_tag')
.whereIn('tag_id', tagIds)
.del()
await this.knex('article_tag').whereIn('tag_id', tagIds).del()

// delete action tag
await this.knex('action_tag')
Expand Down

0 comments on commit 8ec5d47

Please sign in to comment.