Web: Files: VDR-lifetime: fixed merge

This commit is contained in:
Nikita Gopienko 2024-05-22 12:55:27 +03:00
parent 68c06ac91a
commit 3d9ffaf309
2 changed files with 3 additions and 1 deletions

View File

@ -48,7 +48,7 @@ const FileLifetime = ({ t }) => {
const dateOptions = [
{
key: 1,
label: t("Common:Days"),
label: t("Common:Days")[0].toUpperCase() + t("Common:Days").slice(1),
"data-type": 1,
},
{

View File

@ -107,6 +107,7 @@ const FilesSelector = ({
withBreadCrumbs: withBreadCrumbsProp,
filesSettings,
cancelButtonLabel,
titleIconTooltip,
}: FilesSelectorProps) => {
const theme = useTheme();
const { t } = useTranslation(["Common"]);
@ -585,6 +586,7 @@ const FilesSelector = ({
: getFileList
}
descriptionText={descriptionText}
titleIconTooltip={titleIconTooltip}
disableFirstFetch
/>
);