Skip to content

Commit

Permalink
prepare for 12 speed field layout on WC2023
Browse files Browse the repository at this point in the history
  • Loading branch information
swantzter committed Jul 8, 2023
1 parent 6e086c2 commit edeea35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/views/DeviceStreamLive.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const cols = computed(() => {
else if (len <= 6) return 3
else if (len <= 8) return 4
else if (len <= 9) return 3
else if (len <= 12) return 4
else if (len <= 12) return 6
else return 5
})
Expand Down
2 changes: 1 addition & 1 deletion src/views/Live.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const cols = computed(() => {
else if (len <= 6) return 3
else if (len <= 8) return 4
else if (len <= 9) return 3
else if (len <= 12) return 4
else if (len <= 12) return 6
else return 5
})
Expand Down

0 comments on commit edeea35

Please sign in to comment.