Skip to content

Commit

Permalink
change the arrangement for categories names
Browse files Browse the repository at this point in the history
the arrangement for the categories name will be up to down, instead of left to right
  • Loading branch information
jxlyn committed Mar 15, 2022
1 parent 9979631 commit ddb1481
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/src/pages/Pathway.vue
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export default {
let col1 = [];
let col2 = [];
for (var i = 0; i < this.categories.length; i++) {
if (i%2 == 0) {
if (i< this.categories.length/2) {
col1.push(this.categories[i]);
} else {
col2.push(this.categories[i])
Expand Down

0 comments on commit ddb1481

Please sign in to comment.