diff --git a/src/opnsense/mvc/app/views/layout_partials/form_input_tr.volt b/src/opnsense/mvc/app/views/layout_partials/form_input_tr.volt
index 2662aa44c..87a86a634 100644
--- a/src/opnsense/mvc/app/views/layout_partials/form_input_tr.volt
+++ b/src/opnsense/mvc/app/views/layout_partials/form_input_tr.volt
@@ -86,9 +86,10 @@
{% if separator|default(false) %}data-separator="{{separator}}"{% endif %}
>
{% if type == 'select_multiple' %}
- {% if style|default('selectpicker') != "tokenize" %}
{% endif %}
- {{ lang._('Clear All') }}
- {% if style|default('selectpicker') == "tokenize" %} {{ lang._('Copy') }}
+
+ {% if "tokenize" not in this_style %}
{% endif %}
+ {{ lang._('Clear All') }}
+ {% if "tokenize" in this_style %} {{ lang._('Copy') }}
{{ lang._('Paste') }}
{% endif %}
{% endif %}