diff --git a/.gitignore b/.gitignore
index 8e22339a1769..8961b70e347b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,7 +14,6 @@
/letsencrypt-webroot/
# Ignore temporary files
-docker-compose.override.yml
__pycache__
*.pyc
._*
diff --git a/Dockerfile.ui b/Dockerfile.ui
index a6dd25992ecd..1faa4941581b 100644
--- a/Dockerfile.ui
+++ b/Dockerfile.ui
@@ -1,5 +1,4 @@
FROM node:lts-slim AS cvat-ui
-
ARG http_proxy
ARG https_proxy
ARG no_proxy
@@ -33,7 +32,8 @@ COPY cvat-core/ /tmp/cvat-core/
COPY cvat-canvas3d/ /tmp/cvat-canvas3d/
COPY cvat-canvas/ /tmp/cvat-canvas/
COPY cvat-ui/ /tmp/cvat-ui/
-RUN npm run build:cvat-ui
+# RUN npm run build:cvat-ui
+RUN NODE_OPTIONS='--openssl-legacy-provider' npm run build:cvat-ui
FROM nginx:mainline-alpine
# Replace default.conf configuration to remove unnecessary rules
diff --git a/cvat-ui/src/components/annotation-page/standard-workspace/objects-side-bar/object-item-menu.tsx b/cvat-ui/src/components/annotation-page/standard-workspace/objects-side-bar/object-item-menu.tsx
index bb25fdcb16bd..f9ccb63e6ab9 100644
--- a/cvat-ui/src/components/annotation-page/standard-workspace/objects-side-bar/object-item-menu.tsx
+++ b/cvat-ui/src/components/annotation-page/standard-workspace/objects-side-bar/object-item-menu.tsx
@@ -78,19 +78,19 @@ function MakeCopyItem(props: ItemProps): JSX.Element {
);
}
-function PropagateItem(props: ItemProps): JSX.Element {
- const { toolProps, ...rest } = props;
- const { propagateShortcut, propagate } = toolProps;
- return (
-
-
- } onClick={propagate}>
- Propagate
-
-
-
- );
-}
+// function PropagateItem(props: ItemProps): JSX.Element {
+// const { toolProps, ...rest } = props;
+// const { propagateShortcut, propagate } = toolProps;
+// return (
+//
+//
+// } onClick={propagate}>
+// Propagate
+//
+//
+//
+// );
+// }
function SwitchOrientationItem(props: ItemProps): JSX.Element {
const { toolProps, ...rest } = props;
@@ -231,7 +231,7 @@ export default function ItemMenu(props: Props): JSX.Element {