Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quick fix #455

Merged
merged 7 commits into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/molecules/HeuristicsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@
padding-bottom: 4px !important;
"
>
{{ item.id }} - {{ item.title }}
{{ item.id + 1 }}
- {{ item.title }}
</v-list-item-title>
</v-list-item-content>
<div
Expand Down
20 changes: 10 additions & 10 deletions src/components/molecules/WeightTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@
/>
</template>
<span>
H{{ f + (tabs + 1) }} has
{{ importt[r - 1] }} than H {{ tabs + 1 }}</span
H{{ tabs + 1 }} has
{{ importt[r - 1] }} than H{{ f + (tabs + 1) }}</span
>
</v-tooltip>
</v-radio-group>
Expand Down Expand Up @@ -151,21 +151,21 @@ export default {
scores: null,
importance: {
'Equal Importance': 1,
'Moderate Importance': 2,
'Strong Importance': 3,
'Very Strong Importance': 4,
'Moderately Importance': 2,
'Strongly Importance': 3,
'Very Strongly Importance': 4,
'Extreme Importance': 5,
'Moderately Less Important': 6,
'Strongly Less Important': 7,
'Very Strongly Less Important': 8,
'Extremely Less Important': 9,
'Extremely Less Important': 9
},
importt: [
'Equal Importance',
'Moderate Importance',
'Strong Importance',
'Very Strong Importance',
'Extreme Importance',
'Moderately Importance',
'Strongly Importance',
'Very Strongly Importance',
'Extremely Importance',
'Moderately Less Important',
'Strongly Less Important',
'Very Strongly Less Important',
Expand Down
Loading
Loading