Simplify the getDecorationZIndex function

(cherry picked from commit e43c58a9555b6a241455a11f7671d0e72c37bdfd)
This commit is contained in:
CenTdemeern1 2024-10-03 16:55:24 +02:00 committed by kakkokari-gtyih
parent fb5a51a7a7
commit d7cc66551f
1 changed files with 1 additions and 2 deletions

View File

@ -115,8 +115,7 @@ function getDecorationOffset(decoration: Omit<Misskey.entities.UserDetailed['ava
}
function getDecorationZIndex(decoration: Omit<Misskey.entities.UserDetailed['avatarDecorations'][number], 'id'>) {
const zIndex = decoration.showBelow ? 0 : 1;
return zIndex === 1 ? undefined : `${zIndex}`;
return decoration.showBelow ? '0' : undefined;
}
const color = ref<string | undefined>();