Skip to content

Commit

Permalink
Changed "None" to "N/A" to help confused users. #2135
Browse files Browse the repository at this point in the history
  • Loading branch information
knirirr committed Sep 19, 2023
1 parent d87357d commit 87c733f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Records/Record/GeneralInfo/Keywords.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<b class="width-15-percent-flex">Subjects</b>
<div class="d-flex full-width flex-wrap ml-md-12 ml-13">
<span v-if="!getField('subjects').length">
None
N/A
</span>
<v-chip
v-for="item in getField('subjects')"
Expand All @@ -27,7 +27,7 @@
<b class="width-15-percent-flex">Domains</b>
<div class="d-flex full-width flex-wrap ml-md-12 ml-13">
<span v-if="!getField('domains').length">
None
N/A
</span>
<v-chip
v-for="item in getField('domains')"
Expand All @@ -49,7 +49,7 @@
<b class="width-15-percent-flex">Taxonomic Range</b>
<div class="d-flex full-width flex-wrap ml-md-12 ml-13">
<span v-if="!getField('taxonomies').length">
None
N/A
</span>
<v-chip
v-for="item in getField('taxonomies')"
Expand All @@ -71,7 +71,7 @@
<b class="width-15-percent-flex">User Defined Tags</b>
<div class="d-flex full-width flex-wrap ml-md-12 ml-13">
<span v-if="!getField('userDefinedTags').length">
None
N/A
</span>
<v-chip
v-for="item in getField('userDefinedTags')"
Expand Down

0 comments on commit 87c733f

Please sign in to comment.