Skip to content

Commit 1f7d837

Browse files
Change invocation step state display selector to fix styling
We added a `data-state` selenium selector for the `InvocationStepStateDisplay.vue` component in #21058. That unfortunately adds CSS styling from `base.scss` to the text in there. Therefore, I have changed the selector to `data-step-state`.
1 parent 9e08047 commit 1f7d837

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/src/components/WorkflowInvocationState/InvocationStepStateDisplay.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const props = defineProps<{
1414
<span
1515
class="d-flex align-items-center"
1616
data-description="invocation step state counter"
17-
:data-state="state"
17+
:data-step-state="state"
1818
:data-count="jobCount">
1919
<FontAwesomeIcon
2020
v-if="iconClasses[props.state]"

client/src/utils/navigation/navigation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ invocations:
10521052
selector: '//span[contains(@class, "content-title name")][text()="${element_identifier}"]'
10531053
step_output_collection_element_datatype: '[data-step="${order_index}"] .invocation-step-output-collection-details .not-loading .datatype .value'
10541054
step_job_details: '[data-step="${order_index}"] .invocation-step-job-details'
1055-
step_job_details_state_counter: '[data-description="invocation step state counter"][data-state="${state}"]'
1055+
step_job_details_state_counter: '[data-description="invocation step state counter"][data-step-state="${state}"]'
10561056
step_job_information: '[data-step="${order_index}"] .invocation-step-job-details .info_data_table'
10571057
step_job_information_tool_id: '[data-step="${order_index}"] .invocation-step-job-details .info_data_table #galaxy-tool-id'
10581058
export_tab: '.invocation-export-tab'

0 commit comments

Comments
 (0)