fix workspace access and vendor correct fonts
Test and publish / verify (push) Successful in 2m22s

This commit is contained in:
2026-08-04 20:07:35 +03:30
parent 29d7f1636f
commit 9380f116d7
46 changed files with 320 additions and 122 deletions
+10
View File
@@ -0,0 +1,10 @@
(() => {
const switchers = document.querySelectorAll('[data-workspace-switch], [data-workspace-access-switch]');
switchers.forEach((select) => {
select.addEventListener('change', () => {
const form = select.form;
if (form && typeof form.requestSubmit === 'function') form.requestSubmit();
else if (form) form.submit();
});
});
})();