diff --git a/app/views/custom_fields/_custom_options.html.erb b/app/views/custom_fields/_custom_options.html.erb
index 814c08d939..1855ef1dba 100644
--- a/app/views/custom_fields/_custom_options.html.erb
+++ b/app/views/custom_fields/_custom_options.html.erb
@@ -80,7 +80,7 @@ See docs/COPYRIGHT.rdoc for more details.
<%= f.fields_for :custom_options, custom_option do |co_f| %>
-
+
<%= co_f.hidden_field :id, class: 'custom-option-id' %>
<%= co_f.text_field :value,
container_class: 'custom-option-value',
diff --git a/frontend/src/app/components/wp-fast-table/builders/drag-and-drop/drag-drop-handle-builder.ts b/frontend/src/app/components/wp-fast-table/builders/drag-and-drop/drag-drop-handle-builder.ts
index ce8416b4af..7e6575f6b9 100644
--- a/frontend/src/app/components/wp-fast-table/builders/drag-and-drop/drag-drop-handle-builder.ts
+++ b/frontend/src/app/components/wp-fast-table/builders/drag-and-drop/drag-drop-handle-builder.ts
@@ -33,7 +33,7 @@ export class DragDropHandleBuilder {
// Wrap handle as span
let span = document.createElement('span');
- span.classList.add('wp-table--drag-and-drop-handle', 'icon-toggle');
+ span.classList.add('wp-table--drag-and-drop-handle', 'icon-drag-handle');
td.appendChild(span);
if (RENDER_DRAG_AND_DROP_POSITION) {
diff --git a/frontend/src/app/modules/admin/types/attribute-group.component.html b/frontend/src/app/modules/admin/types/attribute-group.component.html
index ef2cd2139f..482a206527 100644
--- a/frontend/src/app/modules/admin/types/attribute-group.component.html
+++ b/frontend/src/app/modules/admin/types/attribute-group.component.html
@@ -1,6 +1,6 @@
|