Skip to content

Commit

Permalink
Update access to txt lexicals
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis Igoumenos committed Feb 22, 2023
1 parent 06930ed commit 49bb4d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/webroot/js/comanage/components/mvea/mvea-item.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default {
<!-- Ad Hoc Attributes -->
<li class="field-data-container" v-if="this.core.mveaType == 'ad_hoc_attributes'">
<div class="field-data force-wrap">
<a href="#" class="nospin">{{ this.mvea.value != '' ? this.mvea.value : this.txt.none }}</a>
<a href="#" class="nospin">{{ this.mvea.value != '' ? this.mvea.value : this.txt["global.value.none"] }}</a>
</div>
<div v-if="this.mvea.tag != ''" class="field-data data-label">
<span class="mr-1 badge bg-light ad-hoc">{{ this.mvea.tag }}</span>
Expand Down Expand Up @@ -126,7 +126,7 @@ export default {
<li class="field-data-container" v-if="this.core.mveaType == 'urls'">
<div class="field-data force-wrap">
<a href="#">{{ this.mvea.description != '' ? this.mvea.description : this.mvea.url }}</a>
<a :href="this.mvea.url" class="canvas-url-link" :title="this.txt.visit"><span class="material-icons">north_east</span></a>
<a :href="this.mvea.url" class="canvas-url-link" :title="this.txt['global.visit.link']"><span class="material-icons">north_east</span></a>
</div>
<div class="field-data data-label">
<span class="mr-1 badge bg-light">{{ this.mvea.type.display_name }}</span>
Expand Down
3 changes: 2 additions & 1 deletion app/webroot/js/comanage/components/mvea/mveas.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ export default {
<mvea-item
:txt="this.txt"
:core="this.core"
v-for='mvea in mveaModel' :mvea="mvea">
v-for='mvea in mveaModel'
:mvea="mvea">
</mvea-item>
</ul>
`
Expand Down

0 comments on commit 49bb4d5

Please sign in to comment.