diff --git a/app/templates/EmailAddresses/fields-nav.inc b/app/templates/EmailAddresses/fields-nav.inc
index 5f5666ae..025e0f3e 100644
--- a/app/templates/EmailAddresses/fields-nav.inc
+++ b/app/templates/EmailAddresses/fields-nav.inc
@@ -26,15 +26,18 @@
*/
// XXX: if CFM-218 (Make fields.inc configuration only) is accepted, move the contents of this file into fields.inc
-$topLinks = [
- [
- 'icon' => 'verified_user',
- 'order' => 'Default',
- 'label' => __d('operation', 'EmailAddresses.verify.force'),
- 'if' => 'notVerified',
- 'link' => [
- 'action' => 'forceVerify',
- $vv_obj->id
- ],
- ];
-];
\ No newline at end of file
+ if($vv_action != 'add') {
+ $topLinks = [
+ [
+ 'icon' => 'verified_user',
+ 'order' => 'Default',
+ 'label' => __d('operation', 'EmailAddresses.verify.force'),
+ 'if' => 'notVerified',
+ 'link' => [
+ 'action' => 'forceVerify',
+ $vv_obj->id
+ ],
+ 'class' => ''
+ ],
+ ];
+ }
\ No newline at end of file
diff --git a/app/webroot/js/comanage/components/common/copy-value-button.js b/app/webroot/js/comanage/components/common/copy-value-button.js
index 582dc991..911b2439 100644
--- a/app/webroot/js/comanage/components/common/copy-value-button.js
+++ b/app/webroot/js/comanage/components/common/copy-value-button.js
@@ -69,7 +69,7 @@ export default {
:aria-label="this.ariaLabel"
@click.stop.prevent="copyValue(this.valueToCopy)">
{{ this.copyIcon }}
- {{ this.txt.copy }}
+ {{ this.txt['operation.copy'] }}
`
}