diff --git a/entries/static/entries/js/unification_entries_list.js b/entries/static/entries/js/unification_entries_list.js
index 39de36125227e0fa338e445bdcc00b1b186c95ec..3542ef8ec5230859e7e87543a3e377115c5ea9d6 100644
--- a/entries/static/entries/js/unification_entries_list.js
+++ b/entries/static/entries/js/unification_entries_list.js
@@ -84,8 +84,11 @@ function setup_lexical_units_table(drilldown, lexical_units, can_see_assignees,
     });
 }
 
-function show_notes_form($container, pk, model, refreshFunction, type, title, body) {
+function show_notes_form($container, pk, model, refreshFunction, type, showForAllCheckbox, title, body) {
     $('.note-form', $container).html($('#note-form-template > div', $container).clone());
+    if(showForAllCheckbox) {
+        $('#for_all_div', $container).hide();
+    }
     $('.hide-note-form', $container).click(function () {
         $('.note-form', $container).html('');
     });
@@ -119,14 +122,14 @@ function show_notes_form($container, pk, model, refreshFunction, type, title, bo
     }
 }
 
-function setup_notes($container, $template, pk, model, refreshFunction, type, title, body) {
+function setup_notes($container, $template, pk, model, refreshFunction, type, showForAllCheckbox, title, body) {
     $container.html($template.children().clone());
     $('.show-note-form', $container).click(function () {
-        show_notes_form($container, pk, model, refreshFunction, type, title, body);
+        show_notes_form($container, pk, model, refreshFunction, type, showForAllCheckbox, title, body);
         return false
     });
     if(title || body) {
-        show_notes_form($container, pk, model, refreshFunction, type, title, body);
+        show_notes_form($container, pk, model, refreshFunction, type, showForAllCheckbox, title, body);
     }
     $.ajax({
         type: 'get',
diff --git a/frontend/src/components/unification/Unification/LexicalUnitEdit.vue b/frontend/src/components/unification/Unification/LexicalUnitEdit.vue
index 4643ecd6a5b87d1246ae21bf9ee8f111cc007bc0..a2158a4915d47e94aaad7e92c4133c6bd7d155a5 100644
--- a/frontend/src/components/unification/Unification/LexicalUnitEdit.vue
+++ b/frontend/src/components/unification/Unification/LexicalUnitEdit.vue
@@ -118,16 +118,19 @@ Object.assign(LexicalUnitEdit, {
       }
     },
     setup_notes_unified_frame() {
-      setup_notes($('#notes-component'), $('#lexical-unit-notes-template'), this.unified_frame.id, 'unifier.UnifiedFrame', this.setup_notes_unified_frame, 'unified_frame');
+      setup_notes($('#notes-component'), $('#lexical-unit-notes-template'), this.unified_frame.id, 'unifier.UnifiedFrame',
+          this.setup_notes_unified_frame, 'unified_frame', true);
     },
     setup_notes_slowal_frame() {
       if (this.active_slowal_frame) {
-        setup_notes($('#notes-component'), $('#lexical-unit-notes-template'), this.active_slowal_frame.id, 'semantics.Frame', this.setup_notes_slowal_frame, 'semantics_frame');
+        setup_notes($('#notes-component'), $('#lexical-unit-notes-template'), this.active_slowal_frame.id,
+            'semantics.Frame', this.setup_notes_slowal_frame, 'semantics_frame', true);
       }
     },
     setup_notes_slowal_frame_with_title_and_body(title, body) {
       this.right_pane_tab = 'notes';
-      setup_notes($('#notes-component'), $('#lexical-unit-notes-template'), this.active_slowal_frame.id, 'semantics.Frame', this.setup_notes_slowal_frame, 'semantics_frame', title, body);
+      setup_notes($('#notes-component'), $('#lexical-unit-notes-template'), this.active_slowal_frame.id,
+          'semantics.Frame', this.setup_notes_slowal_frame, 'semantics_frame', true, title, body);
     },
     unifiedFrameArgumentSelected(argument) {
       if (this.active_unified_frame_argument === argument) {
diff --git a/frontend/src/components/unification/hierarchy/HierarchyEdit.vue b/frontend/src/components/unification/hierarchy/HierarchyEdit.vue
index 07878c46b48dad9d9e096e41eec705b0399c5374..4b610c165ee9bec913012a3bd5540f5a48ccf4bd 100644
--- a/frontend/src/components/unification/hierarchy/HierarchyEdit.vue
+++ b/frontend/src/components/unification/hierarchy/HierarchyEdit.vue
@@ -157,7 +157,8 @@ Object.assign(HierarchyEdit, {
       });
     },
     setup_notes_unified_frame() {
-      setup_notes($('#notes-component'), $('#lexical-unit-notes-template'), this.unified_frame.id, 'unifier.UnifiedFrame', this.setup_notes_unified_frame, 'hierarchy_frame');
+      setup_notes($('#notes-component'), $('#lexical-unit-notes-template'), this.unified_frame.id, 'unifier.UnifiedFrame',
+              this.setup_notes_unified_frame, 'hierarchy_frame', true);
     },
     unifiedFrameArgumentSelected(argument) {
       if (this.active_unified_frame_argument === argument) {
diff --git a/frontend/src/components/unification/shared/LexicalUnitDisplay.vue b/frontend/src/components/unification/shared/LexicalUnitDisplay.vue
index 1fcce5021bdf1e0c658a5a6f17ecbe57738dd3db..d5c7ef98977c5f998c7662fdb761940968ea4e47 100644
--- a/frontend/src/components/unification/shared/LexicalUnitDisplay.vue
+++ b/frontend/src/components/unification/shared/LexicalUnitDisplay.vue
@@ -131,7 +131,7 @@ export default {
       return !has_permission("users.view_assignment");
     },
     setup_notes () {
-      setup_notes($('#lexical-unit-notes'), $('#lexical-unit-notes-template'), this.lexicalUnitId, 'meanings.LexicalUnit', this.setup_notes);
+      setup_notes($('#lexical-unit-notes'), $('#lexical-unit-notes-template'), this.lexicalUnitId, 'meanings.LexicalUnit', this.setup_notes, 'display', true);
     },
     meaningLuSelected(selectedLus) {
       this.selectedLus = selectedLus;
@@ -167,7 +167,7 @@ export default {
           this.examples = response.examples;
 
           window.update_last_visited(response.last_visited);
-          window.setup_notes($('#lexical-unit-notes'), $('#lexical-unit-notes-template'), this.lexicalUnitId, 'meanings.LexicalUnit', this.setup_notes);
+          window.setup_notes($('#lexical-unit-notes'), $('#lexical-unit-notes-template'), this.lexicalUnitId, 'meanings.LexicalUnit', this.setup_notes, 'display', false);
         }.bind(this),
         error: function(request, errorType, errorMessage) {
           show_error(errorType + ' (' + errorMessage + ')');
diff --git a/users/templates/notes.html b/users/templates/notes.html
index d58844e5f4dcf3d0fa644447ae48e7b04ff9135e..4aacec3ff27cfabdfca0ae7a9de405aa98e4a84b 100644
--- a/users/templates/notes.html
+++ b/users/templates/notes.html
@@ -15,8 +15,10 @@
                     Superleksykograf
                 {% endif %}
                 <input id="super" name="super" type="checkbox" title="{% if is_superlexicograf %} {% trans 'Notatka widoczna dla użytkownika' %} {% else %} {% trans 'Notatka widoczna dla superleksykografa' %} {% endif %}" />
+                <div id="for_all_div">
                     Widoczna dla wszystkich
-                <input id="for_all" name="for_all" type="checkbox" title="Notatka widoczna dla wszystkich" />
+                    <input id="for_all" name="for_all" type="checkbox" title="Notatka widoczna dla wszystkich" />
+                </div>
                 <input id="title" name="title" class="form-control mb-2" placeholder="{% trans 'Tytuł notatki' %}" />
                 <textarea id="note" name="note" class="form-control" placeholder="{% trans 'Treść notatki' %}"></textarea>
                 </div>