diff --git a/connect/community/CustomizationOptions.ts b/connect/community/CustomizationOptions.ts index 3cb0d7da..f6838fe2 100644 --- a/connect/community/CustomizationOptions.ts +++ b/connect/community/CustomizationOptions.ts @@ -23,7 +23,7 @@ export class Layout { variables['@global-background'] = Layout.convertRGBAtoRGB(options.backgrounds.light.color); variables['@hero-background-image'] = (options.backgrounds.form.imageFile ? (this.getUrl(properties.utilsService + '/download/' + options.backgrounds.form.imageFile)) : 'none'); variables['@hero-background-position'] = options.backgrounds.form.position; - variables['@hero-fonts-mode'] = options.backgrounds.form.fontsDarkMode?'dark':'light'; + variables['@hero-fonts-mode'] = options.backgrounds.form.fontsDarkMode == true ?'dark':'light'; } if (options.buttons) { //general @@ -197,7 +197,7 @@ export class CustomizationOptions { if (!current.backgrounds.form.position) { current.backgrounds.form.position = "center bottom" } - if (!current.backgrounds.form.fontsDarkMode) { + if (current.backgrounds.form.fontsDarkMode == undefined) { current.backgrounds.form.fontsDarkMode = true; } if (!current.buttons) { diff --git a/utils/dataTransfer/transferData.component.html b/utils/dataTransfer/transferData.component.html index 8fd50ef7..86317a20 100644 --- a/utils/dataTransfer/transferData.component.html +++ b/utils/dataTransfer/transferData.component.html @@ -1,5 +1,5 @@ diff --git a/utils/dataTransfer/transferData.component.ts b/utils/dataTransfer/transferData.component.ts index 1062e910..647d6a3c 100644 --- a/utils/dataTransfer/transferData.component.ts +++ b/utils/dataTransfer/transferData.component.ts @@ -150,7 +150,7 @@ export class EGIDataTransferComponent { this.egiTransferModal.cancelButton = false; this.egiTransferModal.okButton = false; this.egiTransferModal.okButtonText = ">> Transfer"; - this.egiTransferModal.title = "EOSC Data Transfer [demo]"; + this.egiTransferModal.title = "EOSC Data Transfer"; this.init(); if(typeof document !== 'undefined') { this.egiTransferModal.open(); diff --git a/utils/modal/full-screen-modal/full-screen-modal.component.ts b/utils/modal/full-screen-modal/full-screen-modal.component.ts index 07c542fb..4dbc5033 100644 --- a/utils/modal/full-screen-modal/full-screen-modal.component.ts +++ b/utils/modal/full-screen-modal/full-screen-modal.component.ts @@ -23,7 +23,7 @@ declare var ResizeObserver;
-
@@ -32,8 +32,7 @@ declare var ResizeObserver;

{{title}}

+ [class.uk-flex-center]="okButton" [class.uk-flex-right]="!okButton">
+
+
+