mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-23 16:26:15 -04:00
refactor(ui): remove n-text (#506)
This commit is contained in:
parent
05ea545475
commit
72c98a3c5e
14 changed files with 52 additions and 74 deletions
|
@ -40,18 +40,18 @@ const validation = useValidation({
|
|||
</th>
|
||||
<tr v-for="{ claim, claimDescription, friendlyValue, value } in decodedJWT[section.key]" :key="claim + value">
|
||||
<td class="claims">
|
||||
<n-text strong>
|
||||
<span font-bold>
|
||||
{{ claim }}
|
||||
</n-text>
|
||||
<n-text v-if="claimDescription" depth="3" ml-2>
|
||||
</span>
|
||||
<span v-if="claimDescription" ml-2 op-70>
|
||||
({{ claimDescription }})
|
||||
</n-text>
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
<n-text>{{ value }}</n-text>
|
||||
<n-text v-if="friendlyValue" ml-2 depth="3">
|
||||
<span>{{ value }}</span>
|
||||
<span v-if="friendlyValue" ml-2 op-70>
|
||||
({{ friendlyValue }})
|
||||
</n-text>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue