fix: projects editor to selected project editor, moved attributes editor

This commit is contained in:
2025-03-02 16:49:28 +04:00
parent 17e6c5f23a
commit e151e4bc5e
44 changed files with 476 additions and 512 deletions

View File

@@ -0,0 +1,6 @@
const eqSet = (firstSet: Set<number>, secondSet: Set<number>) =>
firstSet.size === secondSet.size &&
[...firstSet].every((x) => secondSet.has(x));
export default eqSet;