Skip to content

Commit

Permalink
JNG-5885 fix generator (#457)
Browse files Browse the repository at this point in the history
[2024-09-04 20:44:49 +0200] JNG-5885 fix generator
  • Loading branch information
noherczeg authored Sep 6, 2024
1 parent 08ddb45 commit 1833657
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import { MdiIcon } from '~/components/MdiIcon';
import { debounceInputs } from '~/config/general';
import { QueryCustomizer } from '~/services/data-api/common/QueryCustomizer';
import { StringOperation } from '~/services/data-api/model/StringOperation';
import { FilterByTypesString } from '~/services/data-api/rest/FilterByTypesString';

export interface TagsProps<P, T> {
id: string;
Expand Down Expand Up @@ -81,7 +80,7 @@ export function Tags<P, T>(props: TagsProps<P, T>) {
const handleSearch = async (searchText: string) => {
try {
setLoading(true);
const filter: FilterByTypesString[] = [];
const filter: { value: string, operator: any }[] = [];
if (searchText) {
filter.push({
value: `%${searchText}%`,
Expand Down

0 comments on commit 1833657

Please sign in to comment.