clay-server 3.2.1 → 3.2.2-beta.1
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/lib/public/css/pane.css
CHANGED
|
@@ -56,6 +56,11 @@ export function initAppNotifications() {
|
|
|
56
56
|
bellBtn = document.getElementById("notif-center-btn");
|
|
57
57
|
badgeEl = document.getElementById("notif-center-badge");
|
|
58
58
|
|
|
59
|
+
// Split panes are secondary clients inside the parent shell. They keep
|
|
60
|
+
// notification state in sync, but the parent owns the single visible
|
|
61
|
+
// banner surface for the whole split view.
|
|
62
|
+
if (store.get('paneMode')) return;
|
|
63
|
+
|
|
59
64
|
// Create banner container
|
|
60
65
|
bannerContainer = document.createElement("div");
|
|
61
66
|
bannerContainer.className = "notif-banner-container";
|
package/package.json
CHANGED