stable

Clone or download

Read-only

feat: Branch table depending on feature flag

part of story #38263 Choose my own columns based on field name (numeric, text, dates) How to test: - No functional change in the "flag-less" widget. - Run the following command to enable the feature flag: $ tuleap config-set feature_flag_enable_tql_select 1 - Reload the page. The widget should fetch the feature flag and show "Nothing here yet." in place of the artifact table. Change-Id: I951d2dfb46cfc396542d2c413476d156b0ef3c30

Modified Files

Name
M plugins/crosstracker/scripts/cross-tracker/package.json +1 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/pnpm-lock.yaml +3 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/CrossTrackerWidget.vue +14 −6 Go to diff View file
A plugins/crosstracker/scripts/cross-tracker/src/api/cross-tracker-rest-api-types.ts +33 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/rest-querier.test.ts +29 −3 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/api/rest-querier.ts +17 −18 Go to diff View file
A plugins/crosstracker/scripts/cross-tracker/src/components/selectable-table/SelectableTable.vue +32 −0 Go to diff View file