diff --git a/src/public/app/widgets/dialogs/options/advanced.js b/src/public/app/widgets/dialogs/options/advanced.js
index 0599044d8..84c224fe8 100644
--- a/src/public/app/widgets/dialogs/options/advanced.js
+++ b/src/public/app/widgets/dialogs/options/advanced.js
@@ -3,53 +3,57 @@ import toastService from "../../../services/toast.js";
import OptionsTab from "./options_tab.js";
const TPL = `
-
Sync
-
-
-
-
-
-
-
-
-
-
-
Database integrity check
-
-
This will check that the database is not corrupted on the SQLite level. It might take some time, depending on the DB size.
-
-
-
-
Consistency checks
-
-
-
-
Anonymize database
-
-
Full anonymization
-
-
This action will create a new copy of the database and anonymize it (remove all note content and leave only structure and some non-sensitive metadata)
- for sharing online for debugging purposes without fear of leaking your personal data.
-
-
+
+
Sync
+
-
Light anonymization
-
-
This action will create a new copy of the database and do a light anonymization on it - specifically only content of all notes will be removed, but titles and attributes will remain. Additionally, custom JS frontend/backend script notes and custom widgets will remain. This provides more context to debug the issues.
+
+
-
You can decide yourself if you want to provide fully or lightly anonymized database. Even fully anonymized DB is very useful, however in some cases lightly anonymized database can speed up the process of bug identification and fixing.
+
+
Database integrity check
+
+
This will check that the database is not corrupted on the SQLite level. It might take some time, depending on the DB size.
+
+
+
-
+
+
Consistency checks
+
+
+
-
Vacuum database
+
+
Anonymize database
+
+
Full anonymization
+
+
This action will create a new copy of the database and anonymize it (remove all note content and leave only structure and some non-sensitive metadata)
+ for sharing online for debugging purposes without fear of leaking your personal data.
+
+
-
This will rebuild the database which will typically result in a smaller database file. No data will be actually changed.
+
Light anonymization
+
+
This action will create a new copy of the database and do a light anonymization on it - specifically only content of all notes will be removed, but titles and attributes will remain. Additionally, custom JS frontend/backend script notes and custom widgets will remain. This provides more context to debug the issues.
+
+
You can decide yourself if you want to provide fully or lightly anonymized database. Even fully anonymized DB is very useful, however in some cases lightly anonymized database can speed up the process of bug identification and fixing.
+
+
+
-`;
+
+
Vacuum database
+
+
This will rebuild the database which will typically result in a smaller database file. No data will be actually changed.