Skip to content

Commit fbb261b

Browse files
committed
Hotfix for Release v13-s12
1 parent b7f1f3f commit fbb261b

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

projects/metis/src/app/_services/workflow.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ export class WorkflowService extends SubscriptionManager {
264264
page: number,
265265
ongoing = false
266266
): 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}`;
268268
if (ongoing) {
269269
url += '&workflowStatus=INQUEUE&workflowStatus=RUNNING';
270270
} else {

projects/metis/src/app/dataset/editor/editor.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ <h3>
3737
><span>{{ step }}</span> <span *ngIf="stepCompare"> {{ stepCompare }}</span></span
3838
>
3939
</div>
40-
<div [ngClass]="{ 'theme-midnight' : editorConfig.theme !== 'default' }">
40+
<div [ngClass]="{ 'theme-midnight': editorConfig.theme !== 'default' }">
4141
<ng-content></ng-content>
4242
</div>
4343
<div *ngIf="expandable" class="btns-set btns-set-right">

projects/metis/src/app/dataset/generalinfo/generalinfo.component.html

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,13 @@
33
<span class="svg-icon-dataset"></span> {{ datasetData.datasetName }}
44
</div>
55
<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>
88
<dt *ngIf="datasetData.dataProvider">{{ 'dataProvider' | translate }}</dt>
99
<dd *ngIf="datasetData.dataProvider">{{ datasetData.dataProvider }}</dd>
1010
<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">
1713
{{ currentDepublicationStatusMessage | translate }}
1814
</span>
1915
</dd>

shared-styles/assets/sass/pandora/components/_status-bullet.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@import '../../scss/iconography/svg-icons-metis';
12
@import '../../scss/generic/variables-colours';
23
@import '../settings/metis-variables-colours';
34

shared-styles/assets/sass/pandora/components/_viewxmlsamples.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ codemirror {
211211
.view-sample.no-sample .theme-midnight .view-sample-editor,
212212
.view-sample .theme-midnight .view-sample-editor-codemirror {
213213
// colour taken from CodeMirror
214-
$midnight: #0F192A;
214+
$midnight: #0f192a;
215215
background-color: $midnight;
216216
scrollbar-color: $eu-jade $midnight;
217217
}

0 commit comments

Comments
 (0)