Add files via upload

This commit is contained in:
公明
2026-01-15 23:41:57 +08:00
committed by GitHub
parent 45f4b52353
commit d80c5914df
7 changed files with 534 additions and 105 deletions
+9
View File
@@ -5007,6 +5007,15 @@ function closeCreateGroupModal() {
}
}
// 选择建议标签
function selectSuggestion(name) {
const input = document.getElementById('create-group-name-input');
if (input) {
input.value = name;
input.focus();
}
}
// 创建分组
async function createGroup(event) {
// 阻止事件冒泡