better limit

This commit is contained in:
mei23 2019-01-05 18:32:50 +09:00
parent 72c10a456b
commit ef396f7733
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
<header>
<h1 :title="title">{{ title }}</h1>
</header>
<p v-if="description" :title="description">{{ description.length > 1000 ? description.slice(0, 1000) + '…' : description }}</p>
<p v-if="description" :title="description">{{ description }}</p>
<footer>
<img class="icon" v-if="icon" :src="icon"/>
<p :title="sitename">{{ sitename }}</p>
@ -183,7 +183,7 @@ export default Vue.extend({
res.json().then(info => {
if (info.url == null) return;
this.title = info.title;
this.description = info.description;
this.description = info.description && info.description.length > 505 ? info.description.slice(0, 505) + '…' : info.description;
this.thumbnail = info.thumbnail;
this.icon = info.icon;
this.sitename = info.sitename;