Skip to content

Commit 1b03fa1

Browse files
committed
minor
1 parent 377d3cd commit 1b03fa1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

services/static-webserver/client/source/class/osparc/store/ConversationsSupport.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ qx.Class.define("osparc.store.ConversationsSupport", {
4848
.then(conversationsData => {
4949
const conversations = [];
5050
if (conversationsData.length) {
51-
// Sort conversations by created date, oldest first (the new ones will be next to the plus button)
52-
conversationsData.sort((a, b) => new Date(a["created"]) - new Date(b["created"]));
51+
// Sort conversations by created date, newest first (the new ones will be next to the plus button)
52+
conversationsData.sort((a, b) => new Date(b["created"]) - new Date(a["created"]));
5353
}
5454
conversationsData.forEach(conversationData => {
5555
const conversation = new osparc.data.model.Conversation(conversationData);

services/static-webserver/client/source/class/osparc/support/ConversationPage.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ qx.Class.define("osparc.support.ConversationPage", {
103103
case "conversation-extra-content":
104104
control = new qx.ui.basic.Label().set({
105105
font: "text-12",
106+
textColor: "text-disabled",
106107
rich: true,
107108
allowGrowX: true,
108109
selectable: true,
@@ -157,6 +158,6 @@ qx.Class.define("osparc.support.ConversationPage", {
157158
title.setValue("");
158159
options.exclude();
159160
}
160-
}
161+
},
161162
}
162163
});

0 commit comments

Comments
 (0)