Skip to content

Commit

Permalink
Fixed intendation
Browse files Browse the repository at this point in the history
  • Loading branch information
joelit committed Dec 19, 2024
1 parent 606df46 commit bde637f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions resource/js/vocab-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const vocabSearch = Vue.createApp({
<div class="row pb-1">
<div class="col" v-if="result.hitType == 'hidden'">
<span class="result">
<template v-if="result.showNotation">
<template v-if="result.showNotation && result.notation">
{{ result.notation }}&nbsp;
</template>
<template v-if="result.hit.hasOwnProperty('match')">
Expand All @@ -289,7 +289,7 @@ const vocabSearch = Vue.createApp({
<div class="col" v-else-if="result.hitType == 'alt'">
<span>
<i>
<template v-if="result.showNotation">
<template v-if="result.showNotation && result.notation">
{{ result.notation }}&nbsp;
</template>
<template v-if="result.hit.hasOwnProperty('match')">
Expand All @@ -301,7 +301,7 @@ const vocabSearch = Vue.createApp({
</i>
</span>
<span> &rarr;&nbsp;<span class="result">
<template v-if="result.showNotation">
<template v-if="result.showNotation && result.notation">
{{ result.notation }}&nbsp;
</template>
<template v-if="result.hitPref.hasOwnProperty('match')">
Expand All @@ -323,12 +323,12 @@ const vocabSearch = Vue.createApp({
</template>
</span>
<span>
&nbsp;{{ result.prefLabel }}
{{ result.prefLabel }}
</span>
</div>
<div class="col" v-else-if="result.hitType == 'pref'">
<span class="result">
<template v-if="result.showNotation">
<template v-if="result.showNotation && result.notation">
{{ result.notation }}&nbsp;
</template>
<template v-if="result.hit.hasOwnProperty('match')">
Expand Down

0 comments on commit bde637f

Please sign in to comment.