stable

Clone or download

Read-only

feat: Display tracker name

part of story #39003 Choose my own columns based on special fields How to test: - Enable the feature flag: $ tuleap config-set feature_flag_enable_tql_select 1 - Write a query using SELECT @tracker.name and save the report. - In the table, you should see a translated "Tracker" column with the tracker name and color as a badge. - No functional change for other columns. Change-Id: I62d017c3a07211cea4b2dc9c546374fe8ce24d06

Modified Files

Name
M plugins/crosstracker/scripts/cross-tracker/src/api/ArtifactsTableBuilder.test.ts +42 −2 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/ArtifactsTableBuilder.ts +22 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/cross-tracker-rest-api-types.ts +13 −0 Go to diff View file
A plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableCell.vue +99 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableTable.test.ts +4 −3 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableTable.vue +16 −72 Go to diff View file
D plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/TextCell.vue +0 −33 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/domain/ArtifactsTable.ts +9 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/domain/ColumnName.ts +2 −1 Go to diff View file
A plugins/crosstracker/scripts/cross-tracker/themes/_cell.scss +27 −0 Go to diff View file