refactor(editor): Improve linting for component and prop names (no-changelog) (#8169)
This commit is contained in:
committed by
GitHub
parent
639afcd7a5
commit
68cff4c59e
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user