Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: immich-app/immich
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c62c9436d5f9bf41a4e769ff17e2d4143eb89e43
Choose a base ref
..
head repository: immich-app/immich
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8d65b47d256b6c6a35b0db006d9e5735cee55221
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 web/src/lib/components/shared-components/search-bar/search-tags-section.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import Combobox, { type ComboBoxOption } from '$lib/components/shared-components/combobox.svelte';
import { getAllTags, upsertTags, type TagResponseDto } from '@immich/sdk';
import { getAllTags, type TagResponseDto } from '@immich/sdk';
import { t } from 'svelte-i18n';
import { onMount } from 'svelte';
import { SvelteSet } from 'svelte/reactivity';
@@ -22,7 +22,7 @@
allTags = await getAllTags();
});
const handleSelect = async (option?: ComboBoxOption) => {
const handleSelect = (option?: ComboBoxOption) => {
if (!option || !option.id) {
return;
}