@asd20/ui 3.2.873 → 3.2.875

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
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.873",
8
+ "version": "3.2.875",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -148,7 +148,7 @@ export default {
148
148
  border-left: 10px solid transparent;
149
149
  border-right: 10px solid transparent;
150
150
  border-top: 10px solid rgba(0, 0, 0, 0.7); /* Arrow color */
151
- cursor: pointer;
151
+ cursor: default;
152
152
  z-index: 10;
153
153
  transition: opacity 0.3s ease;
154
154
  opacity: 0.7;
@@ -126,8 +126,8 @@ export default {
126
126
  targetValue() {
127
127
  const hostname =
128
128
  typeof window !== 'undefined' ? window.location.host : 'www.asd20.org'
129
- return (this.link.includes('http') && !this.link.includes(hostname)) ||
130
- (this.to.includes('http') && !this.link.includes(hostname))
129
+ return (this.link && this.link.includes('http') && !this.link.includes(hostname)) ||
130
+ (this.to && this.to.includes('http') && !this.link.includes(hostname))
131
131
  ? '_blank'
132
132
  : '_self'
133
133
  },