This commit is contained in:
@@ -55,6 +55,24 @@ move into Options object these things:
|
||||
:rows-per-page-items="rowsPerPageItems"
|
||||
:rows-per-page-text="lt('RowsPerPage')"
|
||||
select-all
|
||||
|
||||
|
||||
Errors are probably due to Options object missing some properties or not as expected, here is the code that is bombing that references this.options. object:
|
||||
const sortIndex = this.options.sortBy.findIndex(k => k === header.value);\n const beingSorted
|
||||
= sortIndex >= 0;\n const isDesc = this.options.sortDesc[sortIndex];\n classes.push('sortable');\n\n
|
||||
if (beingSorted) {\n classes.push('active');\n classes.push(isDesc ? 'desc' : 'asc');\n
|
||||
attrs['aria-sort'] = isDesc ? 'descending' : 'ascending';\n
|
||||
attrs['aria-label'] += isDesc ? this.$vuetify.lang.t('$vuetify.dataTable.ariaLabel.sortDescending') :
|
||||
this.$vuetify.lang.t('$vuetify.dataTable.ariaLabel.sortAscending');\n } else {\n
|
||||
attrs['aria-label'] += this.$vuetify.lang.t('$vuetify.dataTable.ariaLabel.sortNone');\n }\n\n
|
||||
if (header.align === 'end') children.unshift(this.genSortIcon());else children.push(this.genSortIcon());\n\n
|
||||
if (this.options.multiSort && beingSorted) {\n children.push(t
|
||||
|
||||
|
||||
Vuetify dialog changes - https://github.com/yariksav/vuetify-dialog/issues/46
|
||||
|
||||
DIALOG - Rethinking the dialog component I'm using, it appears to be buggy with the new vuetify version and it's a 3rd party black box of confusion at times. Vuetify has a built in dialog, not as specialized and windows-y (alert, danger, info etc) but it could be made to work and then I'm not reliant on one more thing
|
||||
OTHER 3rd PARTY - examine any other 3rd party client stuff being used and see if can replace it with anything in Vuetify or Vue itself, less dependencies the better!
|
||||
=================================================
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user