V135.2 Opus workspace fix click bug renderSuites - Yacine URGENT AUCUN BOUTON EST CLICKABLE - cause racine doctrine 13 ma fonction renderSuites V133 generait onclick loadModule mais loadModule function n existe PAS dans workspace.html - la vraie function de navigation est go(KEY) utilisee par sidebar et grid - fix simple replace loadModule par go dans renderSuites - Playwright error PageError loadModule is not defined confirmed - apres fix click fonctionne currentPage change frameView display block pageTitle update - GOLD v135-2-workspace-click-fix preserved - chattr discipline - NR 153 sur 153 preserved - doctrine 13 cause racine scope JS function nom - doctrine 16 non regression restoration feature critique
Some checks failed
WEVAL NonReg / nonreg (push) Has been cancelled
Some checks failed
WEVAL NonReg / nonreg (push) Has been cancelled
This commit is contained in:
@@ -806,7 +806,7 @@ function renderSuites(){
|
||||
var name = m[0], url = m[1], col = m[2];
|
||||
var iconSrc = (typeof ICONS !== 'undefined' && ICONS[k]) ? ICONS[k] : getFallbackLogoSVG(name, color);
|
||||
var tierBadge = (typeof TIERS !== 'undefined' && TIERS[k] === 'pro') ? '<span style="position:absolute;top:4px;right:4px;background:linear-gradient(135deg,#a78bfa,#7c3aed);color:#fff;font-size:8px;padding:2px 6px;border-radius:6px;font-weight:700;letter-spacing:0.5px">PRO</span>' : '<span style="position:absolute;top:4px;right:4px;background:var(--green);color:#fff;font-size:8px;padding:2px 6px;border-radius:6px;font-weight:700;letter-spacing:0.5px">FREE</span>';
|
||||
html += '<div class="tool" onclick="loadModule(\'' + k + '\')" style="position:relative">' + tierBadge;
|
||||
html += '<div class="tool" onclick="go(\'' + k + '\')" style="position:relative">' + tierBadge;
|
||||
html += '<div class="tool-ico"><img src="' + iconSrc + '" alt="' + name.replace(/"/g,'"') + '" onerror="this.onerror=null;this.src=\'' + getFallbackLogoSVG(name, color).replace(/'/g,"\\'") + '\'"></div>';
|
||||
html += '<h3>' + name + '</h3><p>' + suite + '</p></div>';
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user