@triptease/tt-navbar 0.0.18 → 0.0.19

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
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent tt-navbar following open-wc recommendations",
4
4
  "license": "MIT",
5
5
  "author": "tt-navbar",
6
- "version": "0.0.18",
6
+ "version": "0.0.19",
7
7
  "type": "module",
8
8
  "main": "dist/src/index.js",
9
9
  "module": "dist/src/index.js",
package/src/TtNavbar.ts CHANGED
@@ -130,6 +130,7 @@ export class TtNavbar extends LitElement {
130
130
  private onAnchorClick = (e: MouseEvent) => {
131
131
  if (this.navigate) {
132
132
  this.navigate(e);
133
+ this.setActiveState();
133
134
  }
134
135
  };
135
136