refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-12-28 09:49:58 +01:00
committed by GitHub
parent 639afcd7a5
commit 68cff4c59e
304 changed files with 3428 additions and 3516 deletions

View File

@@ -328,16 +328,16 @@ watchEffect(async () => {
</router-link>
</div>
<div :class="$style.listComponentWrapper">
<workflow-history-list
<WorkflowHistoryList
v-if="canRender"
:items="workflowHistory"
:lastReceivedItemsLength="lastReceivedItemsLength"
:activeItem="activeWorkflowVersion"
:last-received-items-length="lastReceivedItemsLength"
:active-item="activeWorkflowVersion"
:actions="actions"
:requestNumberOfItems="requestNumberOfItems"
:shouldUpgrade="workflowHistoryStore.shouldUpgrade"
:evaluatedPruneTime="evaluatedPruneTime"
:isListLoading="isListLoading"
:request-number-of-items="requestNumberOfItems"
:should-upgrade="workflowHistoryStore.shouldUpgrade"
:evaluated-prune-time="evaluatedPruneTime"
:is-list-loading="isListLoading"
@action="onAction"
@preview="onPreview"
@load-more="loadMore"
@@ -345,13 +345,13 @@ watchEffect(async () => {
/>
</div>
<div :class="$style.contentComponentWrapper">
<workflow-history-content
<WorkflowHistoryContent
v-if="canRender"
:workflow="activeWorkflow"
:workflowVersion="activeWorkflowVersion"
:workflow-version="activeWorkflowVersion"
:actions="actions"
:isListLoading="isListLoading"
:isFirstItemShown="isFirstItemShown"
:is-list-loading="isListLoading"
:is-first-item-shown="isFirstItemShown"
@action="onAction"
/>
</div>