Skip to content

Commit

Permalink
💄 调整放缩比
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Sep 7, 2024
1 parent 2ebc3fc commit 0170503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/postReply/tpr-reply.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ async function listenSub(): Promise<UnlistenFn> {
async function share(): Promise<void> {
const replyDom = document.getElementById(replyId);
if (replyDom === null) return;

Check notice on line 172 in src/components/postReply/tpr-reply.vue

View workflow job for this annotation

GitHub Actions / Qodana for JS

Comparison of expressions having incompatible types

Condition is always false since types 'HTMLElement' and 'null' have no overlap
await generateShareImg(replyId, replyDom);
await generateShareImg(replyId, replyDom, 3);
}
function getFullTime(): string {
Expand Down

0 comments on commit 0170503

Please sign in to comment.