Skip to content

Commit 111ebf4

Browse files
authored
Revert "Update Pebblo client key (#452)" (#455)
This reverts commit 220f23a.
1 parent 220f23a commit 111ebf4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pebblo/app/pebblo-ui/src/components/progressBar.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export function ProgressBar(props) {
66
if (id) {
77
waitForElement(`#inner-${id}`, 1500).then(function () {
88
const innerRect = document.getElementById(`inner-${id}`);
9+
console.log({ id, innerRect });
910
innerRect.style.width = `${progress}%`;
1011
innerRect.style.backgroundColor = color;
1112
});

pebblo/app/pebblo-ui/src/constants/constant.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ export const APP_DATA =
4949
export const PORT = window.location.port;
5050

5151
export const SERVER_VERSION = APP_DATA_RESP?.pebbloServerVersion || "";
52-
export const CLIENT_VERSION = APP_DATA?.clientVersion?.version || "";
53-
const clientName = APP_DATA?.clientVersion?.name || "";
52+
export const CLIENT_VERSION = APP_DATA?.pebbloClientVersion || "";
5453

5554
export const NO_APPLICATIONS_FOUND = APP_DATA
5655
? Object.keys(APP_DATA)?.length === 0
@@ -132,8 +131,8 @@ export const APP_DETAILS = [
132131
value: getFormattedDate(APP_DATA?.instanceDetails?.createdAt, false, false),
133132
},
134133
{
135-
label: "Pebblo Client",
136-
value: `${clientName} ${CLIENT_VERSION}`,
134+
label: "Pebblo Client Version",
135+
value: CLIENT_VERSION,
137136
},
138137
{
139138
label: "Path",

0 commit comments

Comments
 (0)