Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Internal Release 8.4 #985

Merged
merged 35 commits into from
Jul 16, 2023
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
1672e69
feat(roadmap): roadmap implementation
simran142002 May 27, 2023
1e285cd
feat(milestone-card):added delete functionality
Aditya3034 May 28, 2023
be4f2ef
feat(milestone-card):added delete functionality
Aditya3034 May 28, 2023
e17c3bf
feat(roadmap)
simran142002 May 30, 2023
338181a
fixes expand icons
simran142002 May 30, 2023
814d641
Merge pull request #965 from simran142002/feat/road-map
viv9k May 30, 2023
f864c94
feat(milestone-card);added delete functionality
Aditya3034 May 30, 2023
9d5d5b5
feat(milestone-card);added delete functionality
Aditya3034 May 30, 2023
c3e3f05
fix(milestone-card):added delete functionality
Aditya3034 Jun 1, 2023
8f9dd04
Update lib.js
Aditya3034 Jun 5, 2023
a083d7d
feat(Roadmap): Added Roadmap and improved logic to milestone and pipe…
viv9k Jun 5, 2023
ddf42af
Merge branch 'dev-angular' into roadmap
viv9k Jun 5, 2023
4c2e352
ui improvement in milestone
RaunakSharma002 Jun 6, 2023
dcfadd3
gitlab pipline
Bankar-Swapnil Jun 16, 2023
ce0a887
gitlab pipline
Bankar-Swapnil Jun 16, 2023
703eea8
gitlab pipline
Bankar-Swapnil Jun 16, 2023
018c91b
gitlab pipline
Bankar-Swapnil Jun 16, 2023
c859d67
gitlab pipline
Bankar-Swapnil Jun 16, 2023
c4c5ed7
icon fix
Bankar-Swapnil Jun 16, 2023
a67a986
Merge pull request #970 from RaunakSharma002/ui-improvement-in-milestone
simran142002 Jun 19, 2023
8acaf9c
Merge pull request #964 from Aditya3034/feat/delete-milestone
simran142002 Jun 19, 2023
04a4b23
Merge branch 'roadmap' of https://github.com/Worktez/worktez
simran142002 Jun 20, 2023
fe789d5
fix(profile): 'Profile page bug fixes'
Jun 23, 2023
e76aa35
requested changes
Jun 24, 2023
6c4bc04
requested changes
Jun 24, 2023
c91d616
fix/roadmap
simran142002 Jun 26, 2023
763fe64
Merge pull request #973 from abhishek-mishra019/profile-fix
simran142002 Jun 29, 2023
83c1aef
Merge pull request #972 from Bankar-Swapnil/pipline
simran142002 Jun 29, 2023
cf0bd99
Merge pull request #976 from simran142002/fix/roadmap
simran142002 Jun 29, 2023
d4ff804
Pipeline has no data upon reload
RaunakSharma002 Jun 29, 2023
d0ec7e1
instant data set on kanban board
RaunakSharma002 Jun 29, 2023
a74a620
Merge pull request #978 from RaunakSharma002/fix-bug-kanban-board
simran142002 Jul 14, 2023
4be08e8
Merge pull request #977 from RaunakSharma002/pipeline-bug-fix
simran142002 Jul 14, 2023
f23ee7b
resolved merge conflicts
simran142002 Jul 14, 2023
ded3e7c
Merge pull request #967 from Worktez/roadmap
simran142002 Jul 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gitlab pipline
  • Loading branch information
Bankar-Swapnil committed Jun 16, 2023
commit 018c91baea78f3cbf9c92162528121fa84f25bdf
4 changes: 0 additions & 4 deletions src/app/body/pipeline/pipeline.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@ export class PipelineComponent {
this.gitlab=false;
this.githubService.getCompletedWorkflowRuns(this.projectLink).subscribe({
next: (data) => {
console.log(data)
this.workflows = data['workflow_runs'];
console.log(this.workflows);
this.showLoader = false;
if (this.workflows.length === 0) {
this.noData = true;
Expand All @@ -119,9 +117,7 @@ export class PipelineComponent {
this.gitlab=true;
this.gitlabService.getCompletedWorkflowRuns(this.ProjectId).subscribe({
next: (data) => {
console.log(data)
this.workflows2 = data;
console.log(this.workflows2);
this.showLoader = false;
if (this.workflows2.length === 0) {
this.noData = true;
Expand Down