mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-22 19:23:31 +00:00
fix: Resolve PBS banner bug and build issues (fixes #55)
This commit is contained in:
@@ -1687,6 +1687,13 @@ document.addEventListener('DOMContentLoaded', function() {
|
||||
loadingMessage.remove();
|
||||
}
|
||||
|
||||
// ---> ADDED: Also remove the 'Not Configured' banner if present, as we now have data
|
||||
const notConfiguredBanner = container.querySelector('.pbs-not-configured-banner');
|
||||
if (notConfiguredBanner) {
|
||||
notConfiguredBanner.remove();
|
||||
}
|
||||
// ---> END ADDED
|
||||
|
||||
// console.log('[updatePbsInfo] Processing PBS array:', pbsArray);
|
||||
|
||||
const currentInstanceIds = new Set();
|
||||
|
||||
@@ -10,9 +10,6 @@ module.exports = {
|
||||
{
|
||||
pattern: /^(bg|text)-(red|yellow|green|blue)-(100|200|300|400|500|600|700|800|900)(\/50)?$/,
|
||||
},
|
||||
{
|
||||
pattern: /^dark:(bg|text)-(red|yellow|green|blue)-(100|200|300|400|500|600|700|800|900)(\/50)?$/,
|
||||
},
|
||||
'vm-icon',
|
||||
'ct-icon',
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user