rm at-uri add post-url

This commit is contained in:
2025-06-15 13:02:50 +09:00
parent 4206b2195d
commit 67b241f1e8
3 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,3 @@
<!-- OAuth Comment System - Load globally for session management --> <!-- OAuth Comment System - Load globally for session management -->
<script type="module" crossorigin src="/assets/comment-atproto-BuIwSgQs.js"></script> <script type="module" crossorigin src="/assets/comment-atproto-DaSMjKIj.js"></script>
<link rel="stylesheet" crossorigin href="/assets/comment-atproto-CPKYAM8U.css"> <link rel="stylesheet" crossorigin href="/assets/comment-atproto-FS0uZjXB.css">

View File

@ -1,3 +1,3 @@
<!-- OAuth Comment System - Load globally for session management --> <!-- OAuth Comment System - Load globally for session management -->
<script type="module" crossorigin src="/assets/comment-atproto-kBwioMcR.js"></script> <script type="module" crossorigin src="/assets/comment-atproto-DaSMjKIj.js"></script>
<link rel="stylesheet" crossorigin href="/assets/comment-atproto-FS0uZjXB.css"> <link rel="stylesheet" crossorigin href="/assets/comment-atproto-FS0uZjXB.css">

View File

@ -1117,7 +1117,9 @@ function App() {
{record.value.text} {record.value.text}
</div> </div>
<div className="comment-meta"> <div className="comment-meta">
<small>{record.uri}</small> {record.value.url && (
<small><a href={record.value.url} target="_blank" rel="noopener noreferrer">{record.value.url}</a></small>
)}
</div> </div>
{/* JSON Display */} {/* JSON Display */}
@ -1201,7 +1203,9 @@ function App() {
{record.value.question || record.value.answer} {record.value.question || record.value.answer}
</div> </div>
<div className="comment-meta"> <div className="comment-meta">
<small>{record.uri}</small> {record.value.url && (
<small><a href={record.value.url} target="_blank" rel="noopener noreferrer">{record.value.url}</a></small>
)}
</div> </div>
{/* JSON Display */} {/* JSON Display */}