Fixed Bug 55062 - Client.Files. Renamed operation panel button.

This commit is contained in:
Nikita Gopienko 2022-01-25 14:16:17 +03:00
parent 509332fb23
commit b03ac6d58f

View File

@ -156,7 +156,13 @@ const OperationsPanelComponent = (props) => {
<Button
scale
key="OkButton"
label={t("Translations:Move")}
label={
isRecycleBin
? t("Translations:Restore")
: isCopy
? t("Translations:Copy")
: t("Translations:Move")
}
size="medium"
primary
onClick={onSubmit}