@mjhls/mjh-framework 1.0.92 → 1.0.93

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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- # mjh-framework v. 1.0.92
2
+ # mjh-framework v. 1.0.93
3
3
 
4
4
 
5
5
  > Foundation Framework
package/dist/index.es.js CHANGED
@@ -7327,7 +7327,7 @@ var NavDvm = function NavDvm(props) {
7327
7327
 
7328
7328
 
7329
7329
  var getLink = function getLink(url, className, name, key, blank) {
7330
- if (url.includes('https://') || url.includes('http://')) {
7330
+ if (url && (url.includes('https://') || url.includes('http://'))) {
7331
7331
  return React__default.createElement(
7332
7332
  'a',
7333
7333
  { target: blank ? '_blank' : '_self', key: key, href: url || '#', className: className },