mirror of
https://github.com/mempool/mempool.git
synced 2025-03-26 17:51:45 +01:00
Fix i18n for unknown pool search
This commit is contained in:
parent
00838ea947
commit
08969592ea
@ -255,7 +255,7 @@ export class ApiService {
|
||||
map((response) => {
|
||||
const pools = interval !== undefined ? response.body.pools : response.body;
|
||||
pools.forEach((pool) => {
|
||||
if (pool.poolUniqueId === 0) {
|
||||
if ((interval !== undefined && pool.poolUniqueId === 0) || (interval === undefined && pool.unique_id === 0)) {
|
||||
pool.name = $localize`:@@e5d8bb389c702588877f039d72178f219453a72d:Unknown`;
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user