Private
Public Access
1
0

chg: pkg: upgrade both backend and frontend to the latest available version #13

This commit is contained in:
2026-06-01 22:36:19 +02:00
parent 7063704539
commit cf56b10aba
5 changed files with 740 additions and 699 deletions
+3 -4
View File
@@ -73,12 +73,11 @@ const bindInvisibleCap = (form, apiEndpoint) => {
};
const initInvisibleCap = () => {
const endpointSource =
document.querySelector('[data-cap-api-endpoint]') ||
document.getElementById('mine-wrapper');
const endpointSource = document.querySelector('[data-cap-api-endpoint]')
|| document.getElementById('mine-wrapper');
const apiEndpoint = endpointSource?.dataset.capApiEndpoint;
if (!apiEndpoint || typeof window.Cap !== 'function') {
if ('function' !== typeof window.Cap || !apiEndpoint) {
return;
}