feat: show featurebase dropdown changelog on bottom panel version

This commit is contained in:
Zamitto 2025-01-03 12:31:47 -03:00
parent bf4c07241f
commit 6a52cb3f52
2 changed files with 19 additions and 4 deletions

View file

@ -21,4 +21,14 @@
cursor: pointer; cursor: pointer;
} }
} }
&__version-button {
color: globals.$body-color;
border-bottom: solid 1px transparent;
&:hover {
border-bottom: solid 1px globals.$body-color;
cursor: pointer;
}
}
} }

View file

@ -81,10 +81,15 @@ export function BottomPanel() {
<small>{status}</small> <small>{status}</small>
</button> </button>
<small> <button
{sessionHash ? `${sessionHash} -` : ""} v{version} &quot; data-featurebase-changelog
{VERSION_CODENAME}&quot; className="bottom-panel__version-button"
</small> >
<small data-featurebase-changelog>
{sessionHash ? `${sessionHash} -` : ""} v{version} &quot;
{VERSION_CODENAME}&quot;
</small>
</button>
</footer> </footer>
); );
} }