diff --git a/js/src/components/Comment/CommentTree.vue b/js/src/components/Comment/CommentTree.vue index 5e93a05e2..402e0008e 100644 --- a/js/src/components/Comment/CommentTree.vue +++ b/js/src/components/Comment/CommentTree.vue @@ -45,8 +45,8 @@ type="is-primary" class="comment-button-submit" icon-left="send" - :aria-label="$t('Post a comment')" - /> + >{{ $t("Send") }} @@ -63,7 +63,7 @@ @@ -77,9 +77,9 @@ @delete-comment="deleteComment" /> -
+ {{ $t("No comments yet") }} -
+ @@ -99,6 +99,7 @@ import { CURRENT_ACTOR_CLIENT } from "../../graphql/actor"; import { IPerson } from "../../types/actor"; import { IEvent } from "../../types/event.model"; import { ApolloCache, FetchResult, InMemoryCache } from "@apollo/client/core"; +import EmptyContent from "@/components/Utils/EmptyContent.vue"; @Component({ apollo: { @@ -119,6 +120,7 @@ import { ApolloCache, FetchResult, InMemoryCache } from "@apollo/client/core"; components: { Comment, IdentityPickerWrapper, + EmptyContent, editor: () => import(/* webpackChunkName: "editor" */ "@/components/Editor.vue"), }, @@ -364,21 +366,34 @@ export default class CommentTree extends Vue {