replace el-tree with vue-json-pretty

This commit is contained in:
pa
2026-01-10 21:20:45 +09:00
committed by Natsumi
parent c2e34e3395
commit 820b86be28
10 changed files with 244 additions and 1153 deletions
+3 -4
View File
@@ -6,7 +6,6 @@ import Noty from 'noty';
import {
arraysMatch,
buildTreeData,
compareByDisplayName,
compareByLocationAt,
compareByName,
@@ -1230,13 +1229,13 @@ export const useUserStore = defineStore('User', () => {
...D.ref,
_hexDisplayName: textToHex(D.ref?.displayName)
};
D.treeData = buildTreeData(treeData);
D.treeData = treeData;
return;
}
D.treeData = buildTreeData({
D.treeData = {
...D.ref,
_hexDisplayName: textToHex(D.ref?.displayName)
});
};
}
async function lookupUser(ref) {