Skip to content

Commit

Permalink
Merge pull request #987 from simran142002/fix/release8.4
Browse files Browse the repository at this point in the history
Fix/release8.4
  • Loading branch information
simran142002 authored Jul 18, 2023
2 parents ded3e7c + ceb2d42 commit ab2b67f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion src/app/body/pipeline/pipeline.component.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
.card {
background-color: var(--primary-bg);
color: var(--text);
border: none !important;
box-shadow: var(--box-shadow-top), var(--box-shadow-bottom);
border-radius: 8px;
}

.dataTable {
background-color: var(--secondary-bg);
box-shadow: var(--box-shadow-bottom);
Expand All @@ -7,7 +15,7 @@

.full-width-table {
width: 100%;
background-color: transparent;
background-color: var(--secondary-bg) ;
color: var(--text);
font-family: var(--font);
}
Expand Down
8 changes: 4 additions & 4 deletions src/app/body/release-details/release-details.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ import { GitDetails } from 'src/app/Interface/TeamInterface';
next: (data) => {
this.releaseDesc=data;
this.formatReleaseDescription();
this.releaseDataReady = true;
this.showLoader = false;
},
error: (error) => {
console.log(error);
Expand All @@ -141,8 +143,6 @@ import { GitDetails } from 'src/app/Interface/TeamInterface';
console.error(error);
},
complete() {
this.releaseDataReady = true;
this.showLoader = false;
console.log("Success");
},
});
Expand All @@ -158,13 +158,13 @@ import { GitDetails } from 'src/app/Interface/TeamInterface';
})).subscribe({
next: (data) => {
this.releaseData = data;
this.releaseDataReady = true;
this.showLoader = false;
},
error: (error) => {
console.error(error);
},
complete() {
this.releaseDataReady = true;
this.showLoader = false;
console.log("Success");
},
})
Expand Down

0 comments on commit ab2b67f

Please sign in to comment.