- {# 'is_location_visible': location.invisible - param deprecated since EZP-32395 #}
{{ ibexa_render_component_group('location-view-tab-groups', {
'content': content,
'location': location,
diff --git a/src/bundle/Resources/views/themes/admin/ui/footer.html.twig b/src/bundle/Resources/views/themes/admin/ui/footer.html.twig
deleted file mode 100644
index 5d1e3aee6d..0000000000
--- a/src/bundle/Resources/views/themes/admin/ui/footer.html.twig
+++ /dev/null
@@ -1,12 +0,0 @@
-{# @deprecated, will be removed in 5.0 #}
-
diff --git a/src/bundle/Resources/views/themes/admin/ui/form_fields.html.twig b/src/bundle/Resources/views/themes/admin/ui/form_fields.html.twig
index 25368fe36a..a646ce0de0 100644
--- a/src/bundle/Resources/views/themes/admin/ui/form_fields.html.twig
+++ b/src/bundle/Resources/views/themes/admin/ui/form_fields.html.twig
@@ -522,7 +522,7 @@
{% include '@ibexadesign/ui/component/alert/alert.html.twig' with {
- type: 'complementary',
+ type: 'info',
title,
icon_path: ibexa_icon_path('system-information'),
show_close_btn: true
diff --git a/src/bundle/ui-dev/src/modules/multi-file-upload/components/drop-area/drop.area.component.js b/src/bundle/ui-dev/src/modules/multi-file-upload/components/drop-area/drop.area.component.js
index dacfe6c534..f90f21d1ee 100644
--- a/src/bundle/ui-dev/src/modules/multi-file-upload/components/drop-area/drop.area.component.js
+++ b/src/bundle/ui-dev/src/modules/multi-file-upload/components/drop-area/drop.area.component.js
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { getTranslator } from '@ibexa-admin-ui/src/bundle/Resources/public/js/scripts/helpers/context.helper';
-import { fileSizeToString } from '../../helpers/text.helper';
+import { fileSizeToString } from '../../../common/helpers/text.helper';
import { createCssClassNames } from '../../../common/helpers/css.class.names';
import Icon from '../../../common/icon/icon';
export default class DropAreaComponent extends Component {
diff --git a/src/bundle/ui-dev/src/modules/multi-file-upload/components/upload-list/upload.item.component.js b/src/bundle/ui-dev/src/modules/multi-file-upload/components/upload-list/upload.item.component.js
index 610d641d9c..c26094ab49 100644
--- a/src/bundle/ui-dev/src/modules/multi-file-upload/components/upload-list/upload.item.component.js
+++ b/src/bundle/ui-dev/src/modules/multi-file-upload/components/upload-list/upload.item.component.js
@@ -6,7 +6,7 @@ import { getTranslator, isExternalInstance } from '@ibexa-admin-ui/src/bundle/Re
import { createCssClassNames } from '../../../common/helpers/css.class.names';
import Icon from '../../../common/icon/icon';
-import { fileSizeToString } from '../../helpers/text.helper';
+import { fileSizeToString } from '../../../common/helpers/text.helper';
import ProgressBarComponent from '../progress-bar/progress.bar.component';
export default class UploadItemComponent extends Component {
diff --git a/src/bundle/ui-dev/src/modules/multi-file-upload/helpers/text.helper.js b/src/bundle/ui-dev/src/modules/multi-file-upload/helpers/text.helper.js
deleted file mode 100644
index f09830e284..0000000000
--- a/src/bundle/ui-dev/src/modules/multi-file-upload/helpers/text.helper.js
+++ /dev/null
@@ -1,4 +0,0 @@
-import { fileSizeToString as fileSizeToStringFromCommon } from '../../common/helpers/text.helper';
-
-// @deprecated, will be removed in 5.0
-export const fileSizeToString = fileSizeToStringFromCommon;