You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hotfix: Tbilisi tab conditional fields not appearing. The Coverage radio + Surrounding-areas multiselect were gated on showWhen('tbilisi_only_mode', '=', true), but the framework's checkbox value-coercion returns the literal string '1' (not 'true') — so the comparison always failed and the merchant only ever saw the master checkbox with no way to pick "Tbilisi + surroundings" or add surrounding settlements. Switched the gate to the truthy operator, which correctly evaluates the '1' value.
Hotfix: Diagnostics tab leaked a local filesystem path. The "Source" line read "ka.wikipedia.org via /Users/george/Documents/georgian-data/scraper.py" — the source string got captured from the bundler's environment when the dataset was built. Cleaned the bundled data/locations.php, the regenerator script build/sync-from-georgian-data.php, AND added a defensive display-time strip in DiagnosticsTab so any merchant still on an older bundle gets a clean value too.