mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-02 20:18:08 +00:00
fix : Help Center article view count (#6429)
* fix: resolves issue with non updating article view count Co-authored-by: BikashSah999 <51731962+BikashSah999@users.noreply.github.com> * Update articles_controller.rb --------- Co-authored-by: BikashSah999 <51731962+BikashSah999@users.noreply.github.com> Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
</td>
|
||||
<td>
|
||||
<span class="fs-small">
|
||||
{{ readCount }}
|
||||
{{ views || 0 }}
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
@@ -76,7 +76,7 @@ export default {
|
||||
type: Object,
|
||||
default: () => {},
|
||||
},
|
||||
readCount: {
|
||||
views: {
|
||||
type: Number,
|
||||
default: 0,
|
||||
},
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
:title="article.title"
|
||||
:author="article.author"
|
||||
:category="article.category"
|
||||
:read-count="article.readCount"
|
||||
:views="article.views"
|
||||
:status="article.status"
|
||||
:updated-at="article.updated_at"
|
||||
/>
|
||||
|
||||
@@ -15,7 +15,7 @@ export default {
|
||||
type: 'text',
|
||||
},
|
||||
},
|
||||
readCount: {
|
||||
views: {
|
||||
defaultValue: 13,
|
||||
control: {
|
||||
type: 'number',
|
||||
@@ -57,7 +57,7 @@ ArticleItem.args = {
|
||||
name: 'John Doe',
|
||||
},
|
||||
category: 'Getting started',
|
||||
readCount: 12,
|
||||
views: 12,
|
||||
status: 'published',
|
||||
updatedAt: 1657255863,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user