Web: Files: fix translations

This commit is contained in:
Viktor Fomin 2022-04-21 13:42:38 +03:00
parent e33ff6a576
commit 5a1062b61b

View File

@ -99,7 +99,7 @@ const StyledSimpleFilesRow = styled(Row)`
.row_content {
${(props) =>
props.sectionWidth > 500 &&
`max-width: fit-content;`}//min-width: auto;;;;
`max-width: fit-content;`}//min-width: auto;;;;;;;
}
.badges {
@ -261,6 +261,9 @@ const SimpleFilesRow = (props) => {
);
};
export default withTranslation(["Home", "Translations", "InfoPanel"])(
withFileActions(withRouter(withQuickButtons(SimpleFilesRow)))
);
export default withTranslation([
"Home",
"Translations",
"InfoPanel",
"VersionBadge",
])(withFileActions(withRouter(withQuickButtons(SimpleFilesRow))));