Skip to content

Commit

Permalink
TimeSeriesTable: Increased the selection list values to 200, 500, 100…
Browse files Browse the repository at this point in the history
…0 and 2000

CSS updated to prevent ellipsis for long numbers
  • Loading branch information
MatTolladay authored and wkramer committed Jun 12, 2024
1 parent 6cecbb9 commit 62a4a35
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/table/TimeSeriesTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,10 @@ const props = withDefaults(defineProps<Props>(), {
})
const itemsPerPageOptions = [
{ value: 50, title: '50' },
{ value: 100, title: '100' },
{ value: 200, title: '200' },
{ value: 500, title: '500' },
{ value: 1000, title: '1000' },
{ value: 2000, title: '2000' },
{ value: -1, title: '$vuetify.dataFooter.itemsPerPageAll' },
]
Expand Down Expand Up @@ -495,6 +495,11 @@ td.sticky-column {
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
}
:deep(.v-select .v-select__selection-text) {
overflow: unset;
text-overflow: unset;
}
.v-table--fixed-header
> .v-table__wrapper
> table
Expand Down

0 comments on commit 62a4a35

Please sign in to comment.