Skip to content

Commit

Permalink
Merge pull request #455 from ruxailab/quickFix
Browse files Browse the repository at this point in the history
Quick fix
  • Loading branch information
jvJUCA authored Apr 23, 2024
2 parents 13c10d2 + 1aead84 commit fdb1cbc
Show file tree
Hide file tree
Showing 4 changed files with 286 additions and 223 deletions.
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

0 comments on commit fdb1cbc

Please sign in to comment.