You've already forked AstralRinth
fix: analytics post release bugs (#6291)
* fix: previous period data was included in the table * fix: revenue displaying stale data when viewing it from different metric and grouped by 6 hour or 1 hour * fix: remove staletime on analytics query so switching tabs does not refersh query * feat: add monetization alert * fix-small: missing space in tooltip * fix: incorrect y-axis formatting for trailing decimal 0s * fix: switching tabs resets table series selection due to other refetches * fix: always show month first in chart tooltip * fix: change all time start date to be project published date * fix: increase length on project name column * fix: unknown download source data points not showing for download source breakdown * fix: double unknown for loader * fix: no data on country labeling incorrectly as "Unknown" instead of "Other" * fix: date picker number inputs showing arrows * fix: stat card showing enormous percentage for prev period by switching it to absolute value difference after 1000% * fix: decimal values for playtime being rounded badly, resulting in 0.04 becoming 0.0 * fix: chips having stroke * refactor: pnpm prepr * fix: spacing in annoucement link * fix: legend scroll shadow on top of event tooltip
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<div class="col-start-2 flex min-w-0 flex-1 flex-col gap-2">
|
||||
<div
|
||||
v-if="header || $slots.header || normalizedTimestamp"
|
||||
class="flex flex-wrap items-center gap-2 text-lg font-bold leading-6"
|
||||
class="flex flex-wrap items-center gap-2 text-lg font-semibold leading-6"
|
||||
>
|
||||
<slot name="header">{{ header }}</slot>
|
||||
<span
|
||||
|
||||
@@ -75,7 +75,7 @@ function toggleItem(item: T) {
|
||||
flex-wrap: wrap;
|
||||
|
||||
.btn {
|
||||
border: 1px solid var(--surface-5);
|
||||
border: 1px solid transparent;
|
||||
&.capitalize {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
@@ -87,7 +87,6 @@ function toggleItem(item: T) {
|
||||
|
||||
&:focus-visible {
|
||||
outline: 0.25rem solid var(--color-focus-ring);
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1580,6 +1580,15 @@ defineExpose({
|
||||
.modrinth-date-picker :deep(.flatpickr-current-month input.cur-year) {
|
||||
@apply min-w-[76px] px-2 text-center;
|
||||
}
|
||||
.modrinth-date-picker :deep(input[type='number']) {
|
||||
-moz-appearance: textfield;
|
||||
appearance: textfield;
|
||||
}
|
||||
.modrinth-date-picker :deep(input[type='number']::-webkit-inner-spin-button),
|
||||
.modrinth-date-picker :deep(input[type='number']::-webkit-outer-spin-button) {
|
||||
margin: 0;
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
.modrinth-date-picker
|
||||
:deep(.flatpickr-current-month .numInputWrapper:has(input.cur-year:disabled)) {
|
||||
@apply cursor-not-allowed;
|
||||
|
||||
Reference in New Issue
Block a user