stable

Clone or download

Read-only

feat: Display static list columns

part of story #38310 Choose my own columns based on field name (lists) How to test: - Enable the feature flag: $ tuleap config-set feature_flag_enable_tql_select 1 - Write a query using SELECT @status and save the report. (or choose any static list field) - In the table, you should see a translated "Status" column with a badge for each selected value. The badge is colored according to the TLP color chosen in tracker administration. If "No color" or a RGB color was chosen, the badge is "tlp-badge-secondary" (light grey). - @tracker.name badges are now outline, so that they match the cross-ref badge color. Change-Id: Iea9fb6d2bcd1670f4068283ffa6f55fd65e3d90b

Modified Files

Name
M plugins/crosstracker/scripts/cross-tracker/src/api/ArtifactsTableBuilder.test.ts +60 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/ArtifactsTableBuilder.ts +20 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/cross-tracker-rest-api-types.ts +14 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableCell.test.ts +9 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableCell.vue +28 −4 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableTable.vue +4 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/domain/ArtifactsTable.ts +12 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/domain/ColumnName.ts +2 −0 Go to diff View file