diff --git a/application/frontend/src/lib/ConfirmationMenu/ConfirmationMenu.scss b/application/frontend/src/lib/ConfirmationMenu/ConfirmationMenu.scss
index 8e6902d..84c2858 100644
--- a/application/frontend/src/lib/ConfirmationMenu/ConfirmationMenu.scss
+++ b/application/frontend/src/lib/ConfirmationMenu/ConfirmationMenu.scss
@@ -27,9 +27,6 @@
.boldText {
font-weight: 800;
}
- .confirmationText {
- margin: 20px 0 0 0;
- }
.deleteModalTitle {
margin-top: 16px;
@@ -41,7 +38,7 @@
display: flex;
flex-direction: column;
margin-top: 24px;
- margin-bottom: 48px;
+ margin-bottom: 24px;
align-items: center;
}
diff --git a/application/frontend/src/lib/ConfirmationMenu/ConfirmationMenu.svelte b/application/frontend/src/lib/ConfirmationMenu/ConfirmationMenu.svelte
index b494fe6..a7cda00 100644
--- a/application/frontend/src/lib/ConfirmationMenu/ConfirmationMenu.svelte
+++ b/application/frontend/src/lib/ConfirmationMenu/ConfirmationMenu.svelte
@@ -14,7 +14,7 @@
import Checkbox from "../CheckBox/Checkbox.svelte";
import fetchApi from "../../utils/fetch.js";
- let confirmationWord = "I understand that data will be lost";
+ let confirmationWord = "I understand that logs will be lost";
let tipsIsVisible = false;
let inputValue = "";
let error = false;
@@ -79,10 +79,9 @@
/>
{#if tipsIsVisible}
- Delete Docker logs - when the option is
- disabled
- you can only delete duplicates of logs, that onLogs uses to present logs
- to you. Logs will be available in docker containers, but not for onLogs.
+ Delete Docker logs - when the option is set to
+ "OFF"
+ logs will be deleted only from onLogs. Logs will be available in docker containers, but not for onLogs.
When
enabled , each deletion of logs will
clear logs from both onLogs and the
@@ -101,22 +100,25 @@
-
- {`You want to delete logs. Host: ${
+
+ {`Host: ${
$lastChosenHost ? $lastChosenHost : "host"
- } service:${
- $lastChosenService ? $lastChosenService : "service"
- } from: `}
-
- {$confirmationObj.message}
+ }`}
-
This data will be lost. This action cannot be undone.
+
+ {`Service: ${
+ $lastChosenService ? $lastChosenService : "service"
+ }, from: `}
+
+ {$confirmationObj.message}
+
+
This data will be lost. This action cannot be undone.