fix(editor): Fix locale plularisation if count is 0 (#6312)
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<n8n-text size="small" :bold="true" color="warning">
|
||||
{{
|
||||
locale.baseText('executionUsage.currentUsage.count', {
|
||||
adjustToNumber: daysLeftOnTrial,
|
||||
adjustToNumber: daysLeftOnTrial || 0,
|
||||
})
|
||||
}}
|
||||
</n8n-text>
|
||||
|
||||
Reference in New Issue
Block a user