|  | @@ -525,7 +525,7 @@ $(document).ready(() => {
 | 
	
		
			
				|  |  |                  }
 | 
	
		
			
				|  |  |                  if (col.type === 'Number' && newValue && newValue !== '') {
 | 
	
		
			
				|  |  |                      const num = _.toNumber(newValue);
 | 
	
		
			
				|  |  | -                    if (num) {
 | 
	
		
			
				|  |  | +                    if (_.isFinite(num)) {
 | 
	
		
			
				|  |  |                          newValue = num;
 | 
	
		
			
				|  |  |                      } else {
 | 
	
		
			
				|  |  |                          try {
 | 
	
	
		
			
				|  | @@ -732,7 +732,7 @@ $(document).ready(() => {
 | 
	
		
			
				|  |  |                          } else {
 | 
	
		
			
				|  |  |                              if (col.type === 'Number') {
 | 
	
		
			
				|  |  |                                  const num = _.toNumber(text);
 | 
	
		
			
				|  |  | -                                if (num) {
 | 
	
		
			
				|  |  | +                                if (_.isFinite(num)) {
 | 
	
		
			
				|  |  |                                      data[col.field] = num;
 | 
	
		
			
				|  |  |                                      filter = false;
 | 
	
		
			
				|  |  |                                  } else {
 | 
	
	
		
			
				|  | @@ -1047,7 +1047,7 @@ $(document).ready(() => {
 | 
	
		
			
				|  |  |                      data.updateData = {pid: posData.id, lid: posData.lid};
 | 
	
		
			
				|  |  |                      if (col.type === 'Number') {
 | 
	
		
			
				|  |  |                          const num = _.toNumber(newText);
 | 
	
		
			
				|  |  | -                        if (num) {
 | 
	
		
			
				|  |  | +                        if (_.isFinite(num)) {
 | 
	
		
			
				|  |  |                              data.updateData[col.field] = num;
 | 
	
		
			
				|  |  |                          } else {
 | 
	
		
			
				|  |  |                              try {
 |