Skip to content

Commit

Permalink
fix: #1109 support telegra.ph use picgo
Browse files Browse the repository at this point in the history
  • Loading branch information
terwer committed Apr 8, 2024
1 parent 252d927 commit a0d0749
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -142,7 +142,6 @@ to [Latest Adaptation](https://terwergreen.feishu.cn/share/base/view/shrcnWT2IGI

- Expansion of telegra.ph support for image uploads
- Reference: https://www.npmjs.com/package/telegraph-uploader
- Support login for telegra.ph
- Rectification of scenarios entailing repetitive image uploads across select platforms
- Resolution of formatting discrepancies within WeChat public accounts
- #990 Rectification of irregular display issues while posting to Jian Shu
Expand Down
1 change: 0 additions & 1 deletion README_zh_CN.md
Expand Up @@ -130,7 +130,6 @@

- telegra.ph 支持上传图片
- 参考 https://www.npmjs.com/package/telegraph-uploader
- 支持 telegra.ph 登录
- 解决部分平台在某些场景下重复上传图片的问题
- 修复微信公众号排版问题
- #990 修复发布到简书时部分格式显示不正常的问题
Expand Down
Expand Up @@ -29,6 +29,7 @@ import { useVueI18n } from "~/src/composables/useVueI18n.ts"
import { useTelegraphApi } from "~/src/adaptors/api/telegraph/useTelegraphApi.ts"
import { TelegraphConfig, TelegraphPostType } from "~/src/adaptors/api/telegraph/telegraphConfig.ts"
import { TelegraphPlaceholder } from "~/src/adaptors/api/telegraph/telegraphPlaceholder.ts"
import { UnwrapRef } from "vue"
const props = defineProps({
apiType: {
Expand Down Expand Up @@ -66,7 +67,7 @@ const handlePostTypeChange = (val: UnwrapRef<TelegraphConfig>) => {
class="ml-4"
@change="
() => {
handlePostTypeChange(header.cfg)
handlePostTypeChange(header.cfg as any)
}
"
>
Expand Down

0 comments on commit a0d0749

Please sign in to comment.