Skip to content

Commit

Permalink
Revert "Update Pebblo client key (#452)" (#455)
Browse files Browse the repository at this point in the history
This reverts commit 220f23a.
  • Loading branch information
srics authored Jul 31, 2024
1 parent 220f23a commit 111ebf4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions pebblo/app/pebblo-ui/src/components/progressBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export function ProgressBar(props) {
if (id) {
waitForElement(`#inner-${id}`, 1500).then(function () {
const innerRect = document.getElementById(`inner-${id}`);
console.log({ id, innerRect });
innerRect.style.width = `${progress}%`;
innerRect.style.backgroundColor = color;
});
Expand Down
7 changes: 3 additions & 4 deletions pebblo/app/pebblo-ui/src/constants/constant.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ export const APP_DATA =
export const PORT = window.location.port;

export const SERVER_VERSION = APP_DATA_RESP?.pebbloServerVersion || "";
export const CLIENT_VERSION = APP_DATA?.clientVersion?.version || "";
const clientName = APP_DATA?.clientVersion?.name || "";
export const CLIENT_VERSION = APP_DATA?.pebbloClientVersion || "";

export const NO_APPLICATIONS_FOUND = APP_DATA
? Object.keys(APP_DATA)?.length === 0
Expand Down Expand Up @@ -132,8 +131,8 @@ export const APP_DETAILS = [
value: getFormattedDate(APP_DATA?.instanceDetails?.createdAt, false, false),
},
{
label: "Pebblo Client",
value: `${clientName} ${CLIENT_VERSION}`,
label: "Pebblo Client Version",
value: CLIENT_VERSION,
},
{
label: "Path",
Expand Down

0 comments on commit 111ebf4

Please sign in to comment.