Browse Source

Fix clear IP affect in UI

Alireza Ahmadi 2 years ago
parent
commit
025f559460
2 changed files with 4 additions and 4 deletions
  1. 2 2
      web/html/xui/client_modal.html
  2. 2 2
      web/html/xui/form/client.html

+ 2 - 2
web/html/xui/client_modal.html

@@ -120,12 +120,12 @@
                     event.target.value = msg.obj
                 }
             },
-            async clearDBClientIps(email,event) {
+            async clearDBClientIps(email) {
                 const msg = await HttpUtil.post('/xui/inbound/clearClientIps/'+ email);
                 if (!msg.success) {
                     return;
                 }
-                event.target.value = ""
+                document.getElementById("clientIPs").value = ""
             },
         },
     });

+ 2 - 2
web/html/xui/form/client.html

@@ -50,12 +50,12 @@
 				Clear The Log
 				</template>
 				<span style="color: #FF4D4F">
-				<a-icon type="delete" @click="clearDBClientIps(client.email,$event)"></a-icon>
+				<a-icon type="delete" @click="clearDBClientIps(client.email)"></a-icon>
 				</span>
 			</a-tooltip>
 		</span>
 		<a-form layout="block">
-			<a-textarea readonly @click="getDBClientIps(client.email,$event)" placeholder="Click To Get IPs"  :auto-size="{ minRows: 2, maxRows: 10 }">
+			<a-textarea id="clientIPs" readonly @click="getDBClientIps(client.email,$event)" placeholder="Click To Get IPs"  :auto-size="{ minRows: 2, maxRows: 10 }">
 			</a-textarea>
 		</a-form>
 	</a-form-item>