Skip to content

Commit

Permalink
Resolve SB and QMC discussion
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedHamouGisaia committed Mar 11, 2024
1 parent 7cf4642 commit ef302bb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export class ActionModalComponent {
}

private getOptionsSetOrg(org: string) {
this.persistenceService.getOptionsSetOrg(org);
return this.persistenceService.getOptionsSetOrg(org);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class FetchInterceptorService {
return response;
},
responseError: (error) =>
// Handle an fetch error
// Handle a fetch error
// eslint-disable-next-line brace-style
{
console.log(error);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class PersistenceService {
this.options = options;
}

/** updates the preview's name, readers and writers */
/** updates the resource's name, readers and writers */
public updateResource(id: string, readers: string[], writers: string[], newValue?: string, options = this.options) {
this.exists(id, options).subscribe(
exist => {
Expand Down Expand Up @@ -142,7 +142,7 @@ export class PersistenceService {
return newOptions;
}

/** deletes the preview by its id */
/** deletes the resource by its id */
public deleteResource(previewId: string, options = this.options) {
this.exists(previewId, options).subscribe(
exist => {
Expand Down

0 comments on commit ef302bb

Please sign in to comment.