Fixed indentation issue in pull # 11748
diff --git a/erpnext/selling/page/point_of_sale/point_of_sale.js b/erpnext/selling/page/point_of_sale/point_of_sale.js
index bfbb6ad..70e45f9 100644
--- a/erpnext/selling/page/point_of_sale/point_of_sale.js
+++ b/erpnext/selling/page/point_of_sale/point_of_sale.js
@@ -464,7 +464,7 @@
 					if (r.message) {
 						this.frm.meta.default_print_format = r.message.print_format || 'POS Invoice';
 						this.frm.allow_edit_rate = r.message.allow_edit_rate;
-            this.frm.allow_edit_discount = r.message.allow_edit_discount;
+            			this.frm.allow_edit_discount = r.message.allow_edit_discount;
 					}
 				}
 
@@ -715,7 +715,7 @@
 		this.customer_field.set_value(this.frm.doc.customer);
 	}
 
-  disable_numpad_control() {
+  	disable_numpad_control() {
 		if(!this.frm.allow_edit_rate && !this.frm.allow_edit_discount) {
 			return ['Rate', 'Disc'];
 		}
@@ -1316,15 +1316,15 @@
 
 		this.set_class();
 
-    if(this.disable_btns) {
-  		this.disable_btns.forEach((btn) => {
-  			const $btn = this.get_btn(btn);
-  			$btn.prop("disabled", true)
-  			$btn.hover(() => {
-  				$btn.css('cursor','not-allowed');
-  			})
-  		})
-    }
+		if(this.disable_btns) {
+			this.disable_btns.forEach((btn) => {
+				const $btn = this.get_btn(btn);
+				$btn.prop("disabled", true)
+				$btn.hover(() => {
+					$btn.css('cursor','not-allowed');
+				})
+			})
+		}
 	}
 
 	set_class() {