mirror of
https://github.com/hkalexling/Mango.git
synced 2026-05-01 00:00:55 -04:00
Merge branch 'dev' into feature/plugin-v2
Fixes #244 again in this branch
This commit is contained in:
@@ -161,7 +161,17 @@
|
||||
<template x-for="ch in chapters" :key="ch">
|
||||
<tr class="ui-widget-content" :id="ch.id">
|
||||
<template x-for="k in chapterKeys" :key="k">
|
||||
<td x-text="ch[k]"></td>
|
||||
<td>
|
||||
<template x-if="ch[k].length > 40">
|
||||
<span>
|
||||
<span x-text="`${ch[k].substring(0, 40)}...`"></span>
|
||||
<div uk-dropdown><span x-text="ch[k]"></span></div>
|
||||
</span>
|
||||
</template>
|
||||
<template x-if="!ch[k].length || ch[k].length <= 40">
|
||||
<span x-text="ch[k]"></span>
|
||||
</template>
|
||||
</td>
|
||||
</template>
|
||||
</tr>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user