+ Операция {data.alias}
+
+ Тип: {labelOperationType(data.operation_type)}
+
+ {data.title ? (
+
+ Название:
+ {data.title}
+
+ ) : null}
+ {data.comment ? (
+
+ Комментарий:
+ {data.comment}
+
+ ) : null}
+
+ );
+}
+
+export default TooltipOperation;
diff --git a/rsconcept/frontend/src/components/select/PickSchema.tsx b/rsconcept/frontend/src/components/select/PickSchema.tsx
index 24b2e521..f1d267fb 100644
--- a/rsconcept/frontend/src/components/select/PickSchema.tsx
+++ b/rsconcept/frontend/src/components/select/PickSchema.tsx
@@ -16,12 +16,13 @@ interface PickSchemaProps {
rows?: number;
value?: LibraryItemID;
+ baseFilter?: (target: ILibraryItem) => boolean;
onSelectValue: (newValue: LibraryItemID) => void;
}
const columnHelper = createColumnHelper