Don't show cake day indicator on the same year / day of user registration, instead show it the following years (#936)

This commit is contained in:
Filip Duricic 2020-07-11 03:38:01 +02:00 committed by GitHub
parent 8d24659892
commit 9c7c7b06df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
ui/src/utils.ts vendored
View file

@ -496,7 +496,8 @@ export function isCakeDay(published: string): boolean {
return (
userCreationDate.date() === currentDate.date() &&
userCreationDate.month() === currentDate.month()
userCreationDate.month() === currentDate.month() &&
userCreationDate.year() !== currentDate.year()
);
}