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

@ -1117,7 +1117,9 @@ function App() {
{record.value.text}
</div>
<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>
{/* JSON Display */}
@ -1201,7 +1203,9 @@ function App() {
{record.value.question || record.value.answer}
</div>
<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>
{/* JSON Display */}