Skip to content

Commit

Permalink
light mode border and default value
Browse files Browse the repository at this point in the history
  • Loading branch information
alextran1502 committed Aug 9, 2024
1 parent 65bc27e commit dd7aa1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/src/entities/user-metadata.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const getDefaultPreferences = (user: { email: string }): UserPreferences

return {
rating: {
enabled: true,
enabled: false,
},
memories: {
enabled: true,
Expand Down
4 changes: 2 additions & 2 deletions web/src/lib/components/shared-components/star-rating.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@
on:click={() => handleSelect(value)}
on:mouseover={() => (hoverRating = value)}
on:focus|preventDefault={() => (hoverRating = value)}
class="shadow-0 outline-0 text-immich-primary"
class="shadow-0 outline-0 text-immich-primary dark:text-immich-dark-primary"
disabled={readOnly}
>
<Icon
path={starIcon}
size="1.5em"
strokeWidth={1}
color={filled ? 'currentcolor' : 'transparent'}
strokeColor={filled ? 'currentcolor' : 'white'}
strokeColor={filled ? 'currentcolor' : '#c1cce8'}
/>
</button>
{/each}
Expand Down

0 comments on commit dd7aa1a

Please sign in to comment.