File tree Expand file tree Collapse file tree 5 files changed +8
-11
lines changed
shared-styles/assets/sass/pandora/components Expand file tree Collapse file tree 5 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ export class WorkflowService extends SubscriptionManager {
264
264
page : number ,
265
265
ongoing = false
266
266
) : Observable < Results < WorkflowExecution > > {
267
- let url = `${ apiSettings . apiHostCore } /orchestrator/workflows/executions/ ?orderField=CREATED_DATE&ascending=false&nextPage=${ page } ` ;
267
+ let url = `${ apiSettings . apiHostCore } /orchestrator/workflows/executions?orderField=CREATED_DATE&ascending=false&nextPage=${ page } ` ;
268
268
if ( ongoing ) {
269
269
url += '&workflowStatus=INQUEUE&workflowStatus=RUNNING' ;
270
270
} else {
Original file line number Diff line number Diff line change 37
37
> < span > {{ step }}</ span > < span *ngIf ="stepCompare "> {{ stepCompare }}</ span > </ span
38
38
>
39
39
</ div >
40
- < div [ngClass] ="{ 'theme-midnight' : editorConfig.theme !== 'default' } ">
40
+ < div [ngClass] ="{ 'theme-midnight': editorConfig.theme !== 'default' } ">
41
41
< ng-content > </ ng-content >
42
42
</ div >
43
43
< div *ngIf ="expandable " class ="btns-set btns-set-right ">
Original file line number Diff line number Diff line change 3
3
< span class ="svg-icon-dataset "> </ span > {{ datasetData.datasetName }}
4
4
</ div >
5
5
< dl class ="dataset-info-fields ">
6
- < dt > {{ 'provider' | translate }}</ dt >
7
- < dd > {{ datasetData.provider }}</ dd >
6
+ < dt *ngIf =" datasetData.provider " > {{ 'provider' | translate }}</ dt >
7
+ < dd *ngIf =" datasetData.provider " > {{ datasetData.provider }}</ dd >
8
8
< dt *ngIf ="datasetData.dataProvider "> {{ 'dataProvider' | translate }}</ dt >
9
9
< dd *ngIf ="datasetData.dataProvider "> {{ datasetData.dataProvider }}</ dd >
10
10
< dt *ngIf ="currentDepublicationStatusMessage "> {{ 'depublicationStatus' | translate }}</ dt >
11
- < dd >
12
- < span
13
- *ngIf ="currentDepublicationStatusMessage "
14
- class ="pill depublication-status "
15
- [ngClass] ="currentDepublicationStatusClass "
16
- >
11
+ < dd *ngIf ="currentDepublicationStatusMessage ">
12
+ < span class ="pill depublication-status " [ngClass] ="currentDepublicationStatusClass ">
17
13
{{ currentDepublicationStatusMessage | translate }}
18
14
</ span >
19
15
</ dd >
Original file line number Diff line number Diff line change
1
+ @import ' ../../scss/iconography/svg-icons-metis' ;
1
2
@import ' ../../scss/generic/variables-colours' ;
2
3
@import ' ../settings/metis-variables-colours' ;
3
4
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ codemirror {
211
211
.view-sample.no-sample .theme-midnight .view-sample-editor ,
212
212
.view-sample .theme-midnight .view-sample-editor-codemirror {
213
213
// colour taken from CodeMirror
214
- $midnight : #0F192A ;
214
+ $midnight : #0f192a ;
215
215
background-color : $midnight ;
216
216
scrollbar-color : $eu-jade $midnight ;
217
217
}
You can’t perform that action at this time.
0 commit comments