Fix landingwidget with multiple versions

When landingwidget renders multiple versions, the versions extend to
the right without wrapping, breaking the UI. This change fixes this
issue by representing multiple versions as list items instead of flat
entries.

Bug: 1263294
Change-Id: Iadee3d4faca74763360226dcd4ca9964d94a9a84
1 file changed
tree: 0bda689812008fd2f307df7e3331d083cae98b79
  1. src/
  2. web/
  3. .gitignore
  4. BUILD
  5. codereview.settings
  6. LICENSE
  7. OWNERS
  8. README.md
README.md

LandingWidget Plugin for Gerrit

Setup

This plugin must be placed inside the Gerrit plugins directory:

git clone --recurse-submodules https://gerrit.googlesource.com/gerrit
cd gerrit/plugins
git clone https://chromium.googlesource.com/infra/gerrit-plugins/landingwidget

Web Plugin Development

For running unit tests execute:

bazel test --test_output=all //plugins/landingwidget/web:karma_test

For checking or fixing eslint formatter problems run:

bazel test //plugins/landingwidget/web:lint_test
bazel run //plugins/landingwidget/web:lint_bin -- --fix "$(pwd)/plugins/landingwidget/web"

For testing the plugin with Gerrit FE Dev Helper build the JavaScript bundle and copy it to the plugins/landingwidget folder:

bazel build //plugins/landingwidget/web:landingwidget
cp -f bazel-bin/plugins/landingwidget/web/landingwidget.js plugins/landingwidget

and let the Dev Helper redirect from .+/plugins/landingwidget/static/landingwidget.js to http://localhost:8081/plugins_/plugins/landingwidget.js.

Note for local testing: this plugin fetches from an external site which may be blocked by CORS policy.