Commit 8455cbe7 authored by Muhammadali's avatar Muhammadali

update

parent b9739050
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "4.8.80", "version": "4.8.81",
"description": "", "description": "",
"main": "src/boxDialer.js", "main": "src/boxDialer.js",
"scripts": { "scripts": {
......
...@@ -7,7 +7,6 @@ const MiniTable = ({ ...@@ -7,7 +7,6 @@ const MiniTable = ({
data, data,
gap = '5px' gap = '5px'
}) => { }) => {
console.log('miniTable_data', data)
return (<TableBlock gap={gap}> return (<TableBlock gap={gap}>
{data?.map(({ id, title, inputTag, type, child, gap }) => ( {data?.map(({ id, title, inputTag, type, child, gap }) => (
<TableBlock.Row id={`${id}`} gap={gap} key={id}> <TableBlock.Row id={`${id}`} gap={gap} key={id}>
......
...@@ -44,7 +44,6 @@ const SettingComponent = ({ ...@@ -44,7 +44,6 @@ const SettingComponent = ({
} }
useEffect(() => { useEffect(() => {
console.log('settingPage: ', settingPage)
if (elem) { if (elem) {
elem.scrollTo({ top: elem.scrollHeight / allData.length * settingPage, behavior: typeof useColorConfigStore.state.switchAnim !== 'undefined' ? useColorConfigStore.state.switchAnim ? 'smooth' : 'auto' : 'smooth' }) elem.scrollTo({ top: elem.scrollHeight / allData.length * settingPage, behavior: typeof useColorConfigStore.state.switchAnim !== 'undefined' ? useColorConfigStore.state.switchAnim ? 'smooth' : 'auto' : 'smooth' })
} }
......
...@@ -92,7 +92,6 @@ export class BoxDialer { ...@@ -92,7 +92,6 @@ export class BoxDialer {
} }
setGlobalHistoryData(data) { setGlobalHistoryData(data) {
console.log('setGlobalHistoryData: ', data);
this.globalHistoryData = data; this.globalHistoryData = data;
} }
......
...@@ -117,9 +117,8 @@ const Root = ({ wsphonedata, onSetDnd, setWsphonedata, callMethod }) => { ...@@ -117,9 +117,8 @@ const Root = ({ wsphonedata, onSetDnd, setWsphonedata, callMethod }) => {
} }
}; };
console.log('wsphonedata_all_data: ', wsphonedata?.position, wsphonedata?.number, wsphonedata,); // console.log('wsphonedata_all_data: ', wsphonedata?.position, wsphonedata?.number, wsphonedata,);
console.log('modalState_callType: ', modalState.callType, modalState.bool)
window.onbeforeunload = () => { window.onbeforeunload = () => {
if (typeof BX !== 'undefined') { if (typeof BX !== 'undefined') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment