Merge branch 'testeA'

pull/1/head
adriano 2022-04-04 14:10:20 -03:00
commit 37f2cb26ad
3 changed files with 12 additions and 0 deletions

View File

@ -115,6 +115,8 @@ export const initWbot = async (whatsapp: Whatsapp): Promise<Session> => {
wbot.on("ready", async () => { wbot.on("ready", async () => {
logger.info(`Session: ${sessionName} READY`); logger.info(`Session: ${sessionName} READY`);
// console.log('>>>>>>>>>>>>>> ready wbot.ts MOBILE NUMBER: ', wbot.info["wid"]["user"])
await whatsapp.update({ await whatsapp.update({
status: "CONNECTED", status: "CONNECTED",
qrcode: "", qrcode: "",

View File

@ -20,6 +20,9 @@ const wbotMonitor = async (
try { try {
wbot.on("change_state", async newState => { wbot.on("change_state", async newState => {
logger.info(`Monitor session: ${sessionName}, ${newState}`); logger.info(`Monitor session: ${sessionName}, ${newState}`);
// console.log('>>>>>>>>>>>>>> change_state wbotMonitor.ts MOBILE NUMBER: ', wbot.info["wid"]["user"])
try { try {
await whatsapp.update({ status: newState }); await whatsapp.update({ status: newState });
} catch (err) { } catch (err) {

View File

@ -566,6 +566,13 @@ const handleModal = (rowData) => {
width: 300, width: 300,
}, },
pageSize: 20,
headerStyle: {
position: "sticky",
top: "0"
},
maxBodyHeight: "400px",
rowStyle: { rowStyle: {
fontSize: 12, fontSize: 12,
} }