fix connection note

Signed-off-by: 21pages <pages21@163.com>
This commit is contained in:
21pages
2023-07-01 09:33:48 +08:00
parent 3e321327a4
commit 89071a4fdb
5 changed files with 12 additions and 11 deletions

View File

@@ -342,8 +342,8 @@ class Header: Reactor.Component {
<textarea .outline-focus spellcheck="false" name="text" novalue="input note here" style="overflow: scroll-indicator; width:*; height: 140px; font-size: 1.2em; padding: 0.5em;">{self.conn_note}</textarea>
</div>, "", function(res=null) {
if (!res) return;
if (!res.text) return;
self.conn_note = res.text;
if (res.text == null || res.text == undefined) return;
self.conn_note = res.text ?? "";
handler.send_note(res.text);
}, 280);
}

View File

@@ -1348,6 +1348,6 @@ async fn start_one_port_forward<T: InvokeUiSession>(
#[tokio::main(flavor = "current_thread")]
async fn send_note(url: String, id: String, conn_id: i32, note: String) {
let body = serde_json::json!({ "id": id, "Id": conn_id, "note": note });
let body = serde_json::json!({ "id": id, "conn_id": conn_id, "note": note });
allow_err!(crate::post_request(url, body.to_string(), "").await);
}