Changeset 12154
- Timestamp:
- 10/30/2022 11:05:34 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js
r12047 r12154 15 15 'close' : 'The ticket is a candidate for closure.', 16 16 'needs-testing' : 'Patch has a particular need for testing.', 17 'has-testing-info' : 'Steps have been provided to reproduce the issue or test a patch.' 18 'needs-testing-info' : 'A more detailed testing procedure is needed to reproduce the issue, or to validate a patch works as expected.', 17 19 'needs-design' : 'A designer should create a prototype of how the suggested changes should look/behave before writing code.', 18 20 'needs-design-feedback' : 'A designer should review and give feedback on the proposed changes.', … … 1239 1241 } 1240 1242 1243 if ( 'has-testing-info' === keyword ) { 1244 wpTrac.workflow.removeKeyword( 'needs-testing-info' ); 1245 } else if ( 'needs-testing-info' === keyword ) { 1246 wpTrac.workflow.removeKeyword( 'has-testing-info' ); 1247 } 1248 1241 1249 if ( 'has-unit-tests' === keyword ) { 1242 1250 wpTrac.workflow.removeKeyword( 'needs-unit-tests' );
Note: See TracChangeset
for help on using the changeset viewer.