Skip to content

Commit

Permalink
Requests: Cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Saurabh Dome committed Dec 13, 2023
1 parent 205f3f3 commit a63f366
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion backend/static/main-hub/app/view/requests/Requests.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ Ext.define("MainHub.view.requests.Requests", {
text: "Name",
dataIndex: "name",
flex: 1,
renderer: function (value, meta) {
var boldValue = '<b>' + Ext.util.Format.htmlEncode(value) + '</b>';
meta.tdAttr = 'data-qtip="' + Ext.util.Format.htmlEncode(value) + '" data-qwidth=300';
return boldValue;
},
},
{
text: "User",
Expand Down Expand Up @@ -123,7 +128,7 @@ Ext.define("MainHub.view.requests.Requests", {
},
},
{
text: "Number of samples and libraries",
text: "Number of Samples and Libraries",
dataIndex: "number_of_samples",
flex: 1,
},
Expand Down

0 comments on commit a63f366

Please sign in to comment.