Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-20 committed Jun 16, 2024
1 parent e9fda23 commit fc4b2f5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion frontend/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { RouterView } from 'vue-router';
import Post from './components/Post.vue'
import Post from './components/Post.vue';
</script>

<template>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/Post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ const vTwemoji = {
width: 80%;
font-size: 11px;
position: absolute;
left:50%;
bottom:0%;
left: 50%;
bottom: 0%;
transform: translateX(0%);
margin-bottom: 0px;
padding: 8px;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/MainView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ fetchMore();
<Post
:id="post.id"
:content="post.converted_message"
:originalContent = "post.original_message"
:originalContent="post.original_message"
:date="new Date(post.created_at)"
:name="post.user_name"
:reactions="convertReactions(post.reactions, post.my_reactions)"
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/views/PostView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ loadPost();
<div v-for="ancestor in postContent.ancestors" :key="ancestor.post.id">
<Post
:content="ancestor.post.converted_message"
:originalContent = "ancestor.post.original_message"
:originalContent="ancestor.post.original_message"
:date="new Date(ancestor.post.created_at)"
:name="ancestor.post.user_name"
:reactions="convertReactions(ancestor.post.reactions, ancestor.post.my_reactions)"
Expand All @@ -37,7 +37,7 @@ loadPost();
<hr />
<Post
:content="postContent.converted_message"
:originalContent = "postContent.original_message"
:originalContent="postContent.original_message"
:date="new Date(postContent.created_at)"
:name="postContent.user_name"
:reactions="convertReactions(postContent.reactions, postContent.my_reactions)"
Expand All @@ -50,7 +50,7 @@ loadPost();
<div v-for="child in postContent.children" :key="child.post.id">
<Post
:content="child.post.converted_message"
:originalContent = "child.post.original_message"
:originalContent="child.post.original_message"
:date="new Date(child.post.created_at)"
:name="child.post.user_name"
:reactions="convertReactions(child.post.reactions, child.post.my_reactions)"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/TrendingView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ loadPost();
<Post
class="trending-post"
:content="post.converted_message"
:originalContent = "post.original_message"
:originalContent="post.original_message"
:date="new Date(post.created_at)"
:name="post.user_name"
:reactions="convertReactions(post.reactions, post.my_reactions)"
Expand Down

0 comments on commit fc4b2f5

Please sign in to comment.