Branch: refs/heads/claude/clever-feynman-kebkgq-js Home: https://github.com/xwiki/xwiki-platform Commit: a4eeac637cd096d06fb4f9f4f0b8f0249b1b10b4 https://github.com/xwiki/xwiki-platform/commit/a4eeac637cd096d06fb4f9f4f0b8f... Author: Vincent Massol <[email protected]> Date: 2026-08-20 (Thu, 20 Aug 2026) Changed paths: M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/js/xwiki/table/livetable.js M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/js/xwiki/xwiki.js M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/model/entityReference.js M xwiki-platform-core/xwiki-platform-web/xwiki-platform-web-war/src/main/webapp/resources/uicomponents/suggest/suggest.js Log Message: ----------- [Misc] Address the review feedback on the JavaScript SonarQube fixes * Use `??` instead of `||` for the three javascript:S6644 default assignments, as requested: `??` falls back only on `null`/`undefined` rather than on every falsy value. In `entityReference.js` this also removes a latent trap, because `parentType` can legitimately be `EntityType.WIKI`, which is `0`. * Move the relocated comment in `suggest.js` onto the `else if` line it describes, since "if present" is now expressed by the condition itself. Co-Authored-By: Vincent Massol <[email protected]> To unsubscribe from these emails, change your notification settings at https://github.com/xwiki/xwiki-platform/settings/notifications