Browse Source

fix(apis): rename tag property functions for consistency

charlie 4 months ago
parent
commit
fa407c1564
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/logseq/api.cljs

+ 2 - 2
src/main/logseq/api.cljs

@@ -203,8 +203,8 @@
 (def ^:export create_tag db-based-api/create-tag)
 (def ^:export add_block_tag db-based-api/add-block-tag)
 (def ^:export remove_block_tag db-based-api/remove-block-tag)
-(def ^:export tag_add_property db-based-api/tag-add-property)
-(def ^:export tag_remove_property db-based-api/tag-remove-property)
+(def ^:export add_tag_property db-based-api/tag-add-property)
+(def ^:export remove_tag_property db-based-api/tag-remove-property)
 
 ;; Internal db-based CLI APIs
 (def ^:export list_tags cli-based-api/list-tags)