1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Fixed: More translations for columns

This commit is contained in:
Bogdan
2023-07-24 09:36:08 +03:00
parent 1190bf791c
commit f9cb4c1abd
8 changed files with 20 additions and 13 deletions
+3 -1
View File
@@ -1,8 +1,10 @@
import React from 'react';
type PropertyFunction<T> = () => T;
interface Column {
name: string;
label: string | React.ReactNode;
label: string | PropertyFunction<string> | React.ReactNode;
columnLabel?: string;
isSortable?: boolean;
isVisible: boolean;