bootstrap-vue-wrapper 1.11.1 → 1.11.2

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": "bootstrap-vue-wrapper",
3
- "version": "1.11.1",
3
+ "version": "1.11.2",
4
4
  "description": "Bootstrap 5 components in Vue3 warapper.",
5
5
  "author": "Gabor Zemko <gaborzemko@gmail.com>",
6
6
  "homepage": "https://github.com/zemkogabor/bootstrap-vue-wrapper",
package/src/.DS_Store ADDED
Binary file
@@ -38,11 +38,7 @@ export default {
38
38
  * @returns {boolean}
39
39
  */
40
40
  isRouteAvailable(item) {
41
- if (!item.route) {
42
- return false
43
- }
44
-
45
- return item.route.name !== this.$route.name
41
+ return item.route
46
42
  },
47
43
  },
48
44
  }
@@ -73,7 +73,7 @@ export default {
73
73
  }
74
74
 
75
75
  if (input.type === 'url') {
76
- return this.$t('validator.error.type_mismatch.email')
76
+ return this.$t('validator.error.type_mismatch.url')
77
77
  }
78
78
  }
79
79