Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
0x1DEA committed Apr 1, 2024
1 parent 69dc88d commit 38e44a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/js/Components/Post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const sendLike = () => {
<p v-if="!post.body" class="text-ui-800 text-3xl text-center h-1/2">This post is empty... Like your soul...</p>
<div v-else class="h-full w-full">
<div class="y justify-between">
<TipTap class="border border-ui-700 rounded-md" :editable="true" v-model="post.body"/>
<TipTap class="border border-ui-700 rounded-md" :editable="!true" v-model="post.body"/>
<details class="text-xs" v-if="$page.props.auth && $page.props.user.roles.includes('admin')">
<summary class="opacity-50 cursor-pointer">Raw Message</summary>
<pre class="w-full overflow-x-auto">{{ post.body }}</pre>
Expand Down
4 changes: 2 additions & 2 deletions resources/js/Pages/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ const props = defineProps({
</div>
</div>
<div class="y space-y-2 md:w-1/3">
<h2 class="font-bold text-2xl">Daily Chat</h2>
<div class="y pane !px-0 !py-0 border border-ui-700">
<h2 v-if="false" class="font-bold text-2xl">Daily Chat</h2>
<div v-if="false" class="y pane !px-0 !py-0 border border-ui-700">
<div class="x space-x-2 items-center bg-ui-950 rounded-t-lg justify-between border-b border-ui-700 p-2">
<div class="x space-x-3 items-center px-2">
<span class="relative h-2 w-2 bg-red-500 rounded-full">
Expand Down

0 comments on commit 38e44a9

Please sign in to comment.