diff --git a/opencti-platform/opencti-front/src/private/components/common/stix_core_objects/StixCoreObjectsTimeline.jsx b/opencti-platform/opencti-front/src/private/components/common/stix_core_objects/StixCoreObjectsTimeline.jsx
index 19c606bff8a1..29ec7ee0a6d4 100644
--- a/opencti-platform/opencti-front/src/private/components/common/stix_core_objects/StixCoreObjectsTimeline.jsx
+++ b/opencti-platform/opencti-front/src/private/components/common/stix_core_objects/StixCoreObjectsTimeline.jsx
@@ -278,7 +278,7 @@ const StixCoreObjectsTimeline = ({
),
}}
variant="outlined"
- className=".noDrag"
+ className="noDrag"
>
@@ -286,7 +286,7 @@ const StixCoreObjectsTimeline = ({
-
+
{defaultValue(stixCoreObject)}
diff --git a/opencti-platform/opencti-front/src/private/components/common/stix_relationships/StixRelationshipsTimeline.jsx b/opencti-platform/opencti-front/src/private/components/common/stix_relationships/StixRelationshipsTimeline.jsx
index b92ff5c0c9c5..fbe7ad80d45a 100644
--- a/opencti-platform/opencti-front/src/private/components/common/stix_relationships/StixRelationshipsTimeline.jsx
+++ b/opencti-platform/opencti-front/src/private/components/common/stix_relationships/StixRelationshipsTimeline.jsx
@@ -1327,7 +1327,7 @@ const StixRelationshipsTimeline = ({
-
+
{defaultValue(remoteNode)}
diff --git a/opencti-platform/opencti-front/src/private/components/data/CsvMappers.tsx b/opencti-platform/opencti-front/src/private/components/data/CsvMappers.tsx
index 9bd40290d0e6..413a47133871 100644
--- a/opencti-platform/opencti-front/src/private/components/data/CsvMappers.tsx
+++ b/opencti-platform/opencti-front/src/private/components/data/CsvMappers.tsx
@@ -27,6 +27,7 @@ const CsvMappers = () => {
{
sortBy: 'name',
orderAsc: false,
+ view: 'lines',
searchTerm: '',
},
);
diff --git a/opencti-platform/opencti-front/src/private/components/data/Feed.tsx b/opencti-platform/opencti-front/src/private/components/data/Feed.tsx
index 826b3cc6d34b..224112b939cf 100644
--- a/opencti-platform/opencti-front/src/private/components/data/Feed.tsx
+++ b/opencti-platform/opencti-front/src/private/components/data/Feed.tsx
@@ -24,7 +24,7 @@ const Feed = () => {
orderAsc: params.orderAsc !== false,
searchTerm: params.searchTerm ?? '',
view: params.view ?? 'lines',
- sortBy: params.sortBy,
+ sortBy: params.sortBy ?? 'name',
});
function saveView() {
diff --git a/opencti-platform/opencti-front/src/private/components/data/Stream.jsx b/opencti-platform/opencti-front/src/private/components/data/Stream.jsx
index 7c545437eae1..21d2cb25c1fa 100644
--- a/opencti-platform/opencti-front/src/private/components/data/Stream.jsx
+++ b/opencti-platform/opencti-front/src/private/components/data/Stream.jsx
@@ -30,6 +30,7 @@ class Stream extends Component {
LOCAL_STORAGE_KEY,
);
this.state = {
+ sortBy: propOr('name', 'sortBy', params),
orderAsc: propOr(true, 'orderAsc', params),
searchTerm: propOr('', 'searchTerm', params),
view: propOr('lines', 'view', params),
diff --git a/opencti-platform/opencti-front/src/private/components/data/Taxii.tsx b/opencti-platform/opencti-front/src/private/components/data/Taxii.tsx
index 9c22e760537f..fec8630e1089 100644
--- a/opencti-platform/opencti-front/src/private/components/data/Taxii.tsx
+++ b/opencti-platform/opencti-front/src/private/components/data/Taxii.tsx
@@ -24,7 +24,7 @@ const Taxii = () => {
orderAsc: params.orderAsc !== false,
searchTerm: params.searchTerm ?? '',
view: params.view ?? 'lines',
- sortBy: params.sortBy,
+ sortBy: params.sortBy ?? 'name',
});
const saveView = () => {