@boomerang-io/carbon-addons-boomerang-react 4.6.8-beta.18 → 4.6.8-beta.19
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.
|
@@ -54,6 +54,7 @@ function AdvantageSideNav(props) {
|
|
|
54
54
|
window.open(assistantLink, "_self", "noopener,noreferrer");
|
|
55
55
|
};
|
|
56
56
|
const handleAssistantClick = () => {
|
|
57
|
+
console.log("regionalTeam", regionalTeam);
|
|
57
58
|
if (regionalTeam?.length > 1) {
|
|
58
59
|
setRegionalModalIsOpen(true);
|
|
59
60
|
setTeamList(regionalTeam?.map((team) => ({
|
|
@@ -45,6 +45,7 @@ function AdvantageSideNav(props) {
|
|
|
45
45
|
window.open(assistantLink, "_self", "noopener,noreferrer");
|
|
46
46
|
};
|
|
47
47
|
const handleAssistantClick = () => {
|
|
48
|
+
console.log("regionalTeam", regionalTeam);
|
|
48
49
|
if (regionalTeam?.length > 1) {
|
|
49
50
|
setRegionalModalIsOpen(true);
|
|
50
51
|
setTeamList(regionalTeam?.map((team) => ({
|
package/dist/types/index.d.ts
CHANGED
|
@@ -267,7 +267,7 @@ type Props$I = {
|
|
|
267
267
|
baseEnvUrl?: string;
|
|
268
268
|
className?: string;
|
|
269
269
|
defaultAssistantLink?: string;
|
|
270
|
-
enableChatButton?:
|
|
270
|
+
enableChatButton?: string;
|
|
271
271
|
showChatButton?: boolean;
|
|
272
272
|
showSelectTeamPurpose?: boolean;
|
|
273
273
|
homeLink?: string;
|
package/package.json
CHANGED