diff --git a/core/modules/views/config/schema/views.style.schema.yml b/core/modules/views/config/schema/views.style.schema.yml
index b2d7fdbe00e4e4580ccdd182a3f948ca7e3b644b..11fca4295da492733a85cf98add16321fdf4ac4e 100644
--- a/core/modules/views/config/schema/views.style.schema.yml
+++ b/core/modules/views/config/schema/views.style.schema.yml
@@ -108,7 +108,7 @@ views.style.table:
       label: 'Override normal sorting if click sorting is used'
     sticky:
       type: boolean
-      label: 'Enable Drupal style "sticky" table headers (JavaScript)'
+      label: 'Enable Drupal style "sticky" table headers'
     summary:
       type: label
       label: 'Summary title'
diff --git a/core/modules/views/src/Plugin/views/style/Table.php b/core/modules/views/src/Plugin/views/style/Table.php
index 078c63d8a86058649a074ec191e7f2357af99b71..4eadd29daa480fba63b0d9bff60a2f02b71ac0e0 100644
--- a/core/modules/views/src/Plugin/views/style/Table.php
+++ b/core/modules/views/src/Plugin/views/style/Table.php
@@ -218,7 +218,7 @@ public function buildOptionsForm(&$form, FormStateInterface $form_state) {
 
     $form['sticky'] = [
       '#type' => 'checkbox',
-      '#title' => $this->t('Enable Drupal style "sticky" table headers (JavaScript)'),
+      '#title' => $this->t('Enable Drupal style "sticky" table headers'),
       '#default_value' => !empty($this->options['sticky']),
       '#description' => $this->t('(Sticky header effects will not be active for preview below, only on live output.)'),
     ];