Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chibat committed Mar 18, 2024
1 parent b335767 commit 14af8f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion islands/PostEdit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export default function Edit(props: { post: PostViewType }) {
</head>
<div class="card mb-3">
<div class="card-body">
<ul class="nav nav-tabs">
<ul class="nav nav-tabs" style={{ marginBottom: "20px" }}>
<li class="nav-item">
<a
class={!preview.value ? "nav-link active" : "nav-link"}
Expand Down
6 changes: 4 additions & 2 deletions islands/PostView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,14 +311,16 @@ export default function PostView(
</section>
</article>
<div class="card-footer bg-transparent">
{commentLoading &&
{
/* {commentLoading &&
(
<div class="d-flex justify-content-center">
<div class="spinner-border" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
)}
)} */
}
{comments &&
comments.map((comment) => (
<div class="border-bottom ms-4">
Expand Down

0 comments on commit 14af8f8

Please sign in to comment.