Skip to content

Commit aa3512a

Browse files
committed
Fix broken style in admin definition form.
1 parent 4c96b09 commit aa3512a

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

admin/definition.html

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ <h3>Add definition</h3>
1111

1212
<form @submit.prevent="onSave">
1313
<figure class="relation-diagram">
14-
<kbd>
15-
<template x-for="(item, idx) in parent.content" :key="idx">
16-
<span x-text="item"></span>
17-
</template>
18-
</kbd>
14+
<template x-for="(item, idx) in parent.content" :key="idx">
15+
<p x-text="item"></p>
16+
</template>
1917
<span>&darr;</span>
2018
</figure>
2119

admin/entry.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h3 x-text="isNew ? 'New entry' : 'Edit entry'"></h3>
5555
<label>
5656
Weight
5757
<input type="number" step="0.01" x-model="entry.weight" placeholder="0 = auto" />
58-
<small class="help">Smaller values rank higher</small>
58+
<small class="help">(Optional). Only set if this word has to be specifically boosted above other results. Smaller values rank higher</small>
5959
</label>
6060
</div>
6161

0 commit comments

Comments
 (0)