@d-mok/quasar-app-extension-quasar-axe 2.1.35 → 2.1.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-mok/quasar-app-extension-quasar-axe",
3
- "version": "2.1.35",
3
+ "version": "2.1.37",
4
4
  "description": "A Quasar App Extension",
5
5
  "author": "d-mok <49301824+d-mok@users.noreply.github.com>",
6
6
  "license": "MIT",
@@ -2,6 +2,7 @@
2
2
  <q-item
3
3
  clickable
4
4
  :to="link"
5
+ :href="link?.startsWith('http') ? link : undefined"
5
6
  >
6
7
  <q-item-section
7
8
  v-if="icon"
@@ -82,11 +82,11 @@ function afterRemoveRow() {
82
82
  async function afterCopy(data: (string | number | boolean)[][], coords: any) {
83
83
  // fix pasting space as non break space problem
84
84
  let text = data.map(r => r.join('\t')).join('\n')
85
- // fix all cols are copied, add header
86
- let col = columns()
87
- if (coords[0].startCol === 0 && coords[0].endCol === col.length - 1) {
88
- text = col.map($ => $.data).join('\t') + '\n' + text
89
- }
85
+ // // if all cols are copied, add header
86
+ // let col = columns()
87
+ // if (coords[0].startCol === 0 && coords[0].endCol === col.length - 1) {
88
+ // text = col.map($ => $.data).join('\t') + '\n' + text
89
+ // }
90
90
  await navigator.clipboard.writeText(text)
91
91
  }
92
92