Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-03-06 16:13:05 +01:00
parent 81e8100897
commit b7a870fae6
3 changed files with 3 additions and 3 deletions

View File

@@ -60,10 +60,10 @@ const InternalLink = {
} }
export default { export default {
name: 'ActivityEntry', name: 'ActivityEntry',
mixins: [ relativeDate ],
components: { components: {
RichText, RichText,
}, },
mixins: [ relativeDate ],
props: { props: {
activity: { activity: {
type: Object, type: Object,

View File

@@ -68,7 +68,6 @@ const AtMention = {
export default { export default {
name: 'CommentItem', name: 'CommentItem',
mixins: [ relativeDate ],
components: { components: {
Avatar, Avatar,
UserBubble, UserBubble,
@@ -77,6 +76,7 @@ export default {
CommentForm, CommentForm,
RichText, RichText,
}, },
mixins: [ relativeDate ],
props: { props: {
comment: { comment: {
type: Object, type: Object,

View File

@@ -21,7 +21,7 @@
*/ */
import axios from '@nextcloud/axios' import axios from '@nextcloud/axios'
import { generateUrl, generateOcsUrl } from '@nextcloud/router' import { generateOcsUrl } from '@nextcloud/router'
export class CommentApi { export class CommentApi {