Skip to content

Commit

Permalink
feature-cfm31 post rebase fixes #1 (#262)
Browse files Browse the repository at this point in the history
* Fix Copy value button label post-rebase (CFM-31)

* Fix email address top-link post-rebase (CFM-31)
  • Loading branch information
arlen authored Dec 17, 2024
1 parent cdf0409 commit d282d67
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
27 changes: 15 additions & 12 deletions app/templates/EmailAddresses/fields-nav.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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
],
];
];
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' => ''
],
];
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default {
:aria-label="this.ariaLabel"
@click.stop.prevent="copyValue(this.valueToCopy)">
<span class="material-symbols-outlined">{{ this.copyIcon }}</span>
<span class="cm-copy-value-text">{{ this.txt.copy }}</span>
<span class="cm-copy-value-text">{{ this.txt['operation.copy'] }}</span>
</button>
`
}

0 comments on commit d282d67

Please sign in to comment.