@agenticmail/enterprise 0.5.235 → 0.5.236
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.
|
@@ -167,7 +167,7 @@ export function MeetingCapabilitiesSection(props) {
|
|
|
167
167
|
disabled: stopping,
|
|
168
168
|
onClick: stopMeetingBrowser,
|
|
169
169
|
style: { background: 'var(--danger)', color: '#fff', border: 'none', marginTop: 4 },
|
|
170
|
-
}, stopping ? 'Stopping...' : I.stop(), ' Stop Meeting Browser'),
|
|
170
|
+
}, stopping ? 'Stopping...' : [I.stop(), ' Stop Meeting Browser']),
|
|
171
171
|
isContainer && !canJoinMeetings && !isObserverOnly && h('div', { style: { fontSize: 11, color: 'var(--warning)', marginTop: 4 } },
|
|
172
172
|
h('span', { style: { display: 'inline-flex', alignItems: 'center', gap: 6 } }, E.warning(14), ' Browser is headless-only on this container. It cannot join video calls (no display/audio).')
|
|
173
173
|
)
|
|
@@ -185,8 +185,8 @@ export function MeetingCapabilitiesSection(props) {
|
|
|
185
185
|
title: isContainer && !canJoinMeetings ? 'Not available on container deployments' : '',
|
|
186
186
|
},
|
|
187
187
|
isContainer && !canJoinMeetings
|
|
188
|
-
? I.x(), ' Not available on containers'
|
|
189
|
-
: launching ? 'Launching...' : I.play(), ' Launch Meeting Browser'
|
|
188
|
+
? [I.x(), ' Not available on containers']
|
|
189
|
+
: launching ? 'Launching...' : [I.play(), ' Launch Meeting Browser']
|
|
190
190
|
)
|
|
191
191
|
)
|
|
192
192
|
)
|
package/package.json
CHANGED
|
@@ -167,7 +167,7 @@ export function MeetingCapabilitiesSection(props) {
|
|
|
167
167
|
disabled: stopping,
|
|
168
168
|
onClick: stopMeetingBrowser,
|
|
169
169
|
style: { background: 'var(--danger)', color: '#fff', border: 'none', marginTop: 4 },
|
|
170
|
-
}, stopping ? 'Stopping...' : I.stop(), ' Stop Meeting Browser'),
|
|
170
|
+
}, stopping ? 'Stopping...' : [I.stop(), ' Stop Meeting Browser']),
|
|
171
171
|
isContainer && !canJoinMeetings && !isObserverOnly && h('div', { style: { fontSize: 11, color: 'var(--warning)', marginTop: 4 } },
|
|
172
172
|
h('span', { style: { display: 'inline-flex', alignItems: 'center', gap: 6 } }, E.warning(14), ' Browser is headless-only on this container. It cannot join video calls (no display/audio).')
|
|
173
173
|
)
|
|
@@ -185,8 +185,8 @@ export function MeetingCapabilitiesSection(props) {
|
|
|
185
185
|
title: isContainer && !canJoinMeetings ? 'Not available on container deployments' : '',
|
|
186
186
|
},
|
|
187
187
|
isContainer && !canJoinMeetings
|
|
188
|
-
? I.x(), ' Not available on containers'
|
|
189
|
-
: launching ? 'Launching...' : I.play(), ' Launch Meeting Browser'
|
|
188
|
+
? [I.x(), ' Not available on containers']
|
|
189
|
+
: launching ? 'Launching...' : [I.play(), ' Launch Meeting Browser']
|
|
190
190
|
)
|
|
191
191
|
)
|
|
192
192
|
)
|