Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions server/immich-openapi-specs.json
Original file line number Diff line number Diff line change
Expand Up @@ -5103,9 +5103,6 @@
"isFavorite": {
"type": "boolean"
},
"isPanorama": {
"type": "boolean"
},
"isArchived": {
"type": "boolean"
},
Expand All @@ -5124,8 +5121,7 @@
"deviceId",
"fileCreatedAt",
"fileModifiedAt",
"isFavorite",
"isPanorama"
"isFavorite"
]
},
"CreateProfileImageDto": {
Expand Down Expand Up @@ -5521,9 +5517,6 @@
"isFavorite": {
"type": "boolean"
},
"isPanorama": {
"type": "boolean"
},
"isArchived": {
"type": "boolean"
},
Expand All @@ -5541,8 +5534,7 @@
"deviceId",
"fileCreatedAt",
"fileModifiedAt",
"isFavorite",
"isPanorama"
"isFavorite"
]
},
"JobCommand": {
Expand Down
3 changes: 0 additions & 3 deletions web/src/lib/components/assets/thumbnail/360arrow.svg

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { fade } from 'svelte/transition';
import { thumbHashToDataURL } from 'thumbhash';
import { Buffer } from 'buffer';
import PanoramaArrow from './360arrow.svg';
import Rotate360Icon from 'svelte-material-icons/Rotate360.svelte';
export let url: string;
export let altText: string;
Expand All @@ -21,7 +21,7 @@
{#if displayPanoramaArrow}
<div class="absolute right-0 top-0 text-white text-xs font-medium flex gap-1 place-items-center z-20">
<span class="pt-2 pr-2">
<img src={PanoramaArrow} alt="" width="24" height="24" />
<svelte:component this={Rotate360Icon} size="24" />
</span>
</div>
{/if}
Expand Down