From 3fc801a8bbe42098d06466afe6ec78cf1284be63 Mon Sep 17 00:00:00 2001 From: Abby Mitchell Date: Fri, 15 Jul 2022 16:00:09 -0400 Subject: [PATCH] :sparkles: lint :sparkles: --- components/ecosystem/TestTable.vue | 6 +++--- pages/ecosystem/index.vue | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/components/ecosystem/TestTable.vue b/components/ecosystem/TestTable.vue index 0eac77b4f..054f6cb8f 100644 --- a/components/ecosystem/TestTable.vue +++ b/components/ecosystem/TestTable.vue @@ -60,9 +60,9 @@ export default class TestTable extends Vue { @Prop({ type: Array, default: () => [['', '', '']] }) filteredData!: Object[] testTypeTooltip = { - 'development': 'This test type indicates the ecosystem tests were run for this package using the latest development version of Qiskit', - 'stable': 'This test type indicates the ecosystem tests were run for this package using the latest stable version of Qiskit', - 'standard': 'This test type means the ecosystem tests were run for this package using the Qiskit version specified in the package requirements', + development: 'This test type indicates the ecosystem tests were run for this package using the latest development version of Qiskit', + stable: 'This test type indicates the ecosystem tests were run for this package using the latest stable version of Qiskit', + standard: 'This test type means the ecosystem tests were run for this package using the Qiskit version specified in the package requirements', 'last passing version': 'This test type means the results in this row show the latest version of Qiskit for which the ecosystem tests pass for this package' } diff --git a/pages/ecosystem/index.vue b/pages/ecosystem/index.vue index 0a6e3a4cd..c9a29bb7a 100644 --- a/pages/ecosystem/index.vue +++ b/pages/ecosystem/index.vue @@ -149,12 +149,12 @@ import { GeneralLink } from '~/constants/appLinks' } return { - packageName, - packageVersion: res.packageVersion, - testType: res.testType, - passed: res.passed, - timestamp, - logsLink: res.logsLink + packageName, + packageVersion: res.packageVersion, + testType: res.testType, + passed: res.passed, + timestamp, + logsLink: res.logsLink } }) }