From d14770188b302db988e6563a3b25cc6ca72b3094 Mon Sep 17 00:00:00 2001 From: Ian Morland Date: Tue, 15 Nov 2022 23:38:02 +0000 Subject: [PATCH] chore: add fullstop to comment --- framework/core/js/src/common/helpers/userOnline.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/js/src/common/helpers/userOnline.tsx b/framework/core/js/src/common/helpers/userOnline.tsx index 9a3572d18..202f7ef4f 100644 --- a/framework/core/js/src/common/helpers/userOnline.tsx +++ b/framework/core/js/src/common/helpers/userOnline.tsx @@ -3,7 +3,7 @@ import User from '../models/User'; import icon from './icon'; /** - * The `useronline` helper displays a green circle if the user is online + * The `useronline` helper displays a green circle if the user is online. */ export default function userOnline(user: User): Mithril.Vnode<{}, {}> | null { if (user.lastSeenAt() && user.isOnline()) {