Skip to content

Commit 9fea8fe

Browse files
committed
fix(PC): 修复动态列表内容转化为富文本后异常截断的问题
# Conflicts: # packages/zhiyicx-plus-pc/resources/views/templates/feeds.blade.php
1 parent 2e24bd3 commit 9fea8fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/zhiyicx-plus-pc/resources/views/templates/feeds.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
@else
4747
<a class="feed_text" href="{{ route('pc:feedread', ['feed' => $post['id']]) }}">
4848
@php
49-
$content = formatContent($post['feed_content']);
49+
$content = $post['feed_content'];
5050
$has_more = mb_strlen($content, 'utf-8') > 100;
5151
$content = mb_substr($content, 0, 100, 'utf-8');
5252
@endphp

0 commit comments

Comments
 (0)