Merge pull request #6070 from mempool/mononaut/stale-beta

stale beta
This commit is contained in:
wiz 2025-10-12 16:37:32 -10:00 committed by GitHub
commit 297f5347f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 5 deletions

View file

@ -1,5 +1,5 @@
<div class="container-xl" style="min-height: 335px">
<h1 class="float-left" i18n="page.recent-stale-chain-tips">Recent Stale Chain Tips</h1>
<h1 class="float-left"><span i18n="page.recent-stale-chain-tips">Recent Stale Chain Tips</span><span class="badge badge-pill badge-warning beta" i18n="beta">beta</span></h1>
<div *ngIf="isLoading" class="spinner-border ml-3" role="status"></div>
<div class="clearfix"></div>

View file

@ -198,4 +198,13 @@
&.faded {
filter: grayscale(100%) brightness(1.5);
}
}
.beta {
font-size: 10px;
margin: 5px;
padding: 5px;
position: relative;
top: -1em;
margin-left: 10px;
}

View file

@ -48,6 +48,10 @@ const routes: Routes = [
path: 'about',
loadChildren: () => import('@components/about/about.module').then(m => m.AboutModule),
},
{
path: 'blocks/stale',
component: StaleList,
},
{
path: 'blocks/:page',
component: BlocksList,
@ -60,10 +64,6 @@ const routes: Routes = [
path: 'rbf',
component: RbfList,
},
{
path: 'stale',
component: StaleList,
},
...(browserWindowEnv.STRATUM_ENABLED ? [{
path: 'stratum',
component: StartComponent,