File tree Expand file tree Collapse file tree 4 files changed +3
-17
lines changed
Expand file tree Collapse file tree 4 files changed +3
-17
lines changed Original file line number Diff line number Diff line change @@ -308,11 +308,6 @@ export default {
308308 params .append (' end_time' , this .filter .endTime );
309309 }
310310
311- if (this .filter ? .startTime && this .filter .endTime ) {
312- params .append (' start_time' , this .filter .startTime );
313- params .append (' end_time' , this .filter .endTime );
314- }
315-
316311 params .append (' limit' , this .itemsPerPage );
317312 params .append (' page' , this .currentPage );
318313
Original file line number Diff line number Diff line change 3737 :step =" 1"
3838 class =" py-6"
3939 :strict =" true"
40- :disabled =" !isRepositoriesData() && !isRepositoryBranchesData()"
40+ :disabled =" !isRepositoriesData() || !isRepositoryBranchesData()"
4141 >
4242 <template v-slot :prepend >
4343 <v-text-field
Original file line number Diff line number Diff line change @@ -304,10 +304,6 @@ export default {
304304 return this .isFullWidth () ? 12 : 6 ;
305305 },
306306
307- isEmptyData () {
308- return Object .keys (this .data ).length === 0 ;
309- },
310-
311307 async loadSequentialPages (pagesToLoad = 1 ) {
312308 // create a unique id for this run so we can cancel/stale-check
313309 const runId = (this ._sequentialRunId = (this ._sequentialRunId || 0 ) + 1 );
@@ -370,12 +366,6 @@ export default {
370366 params .append (' end_time' , this .filter .endTime );
371367 }
372368
373- // Add starttime and endtime filters if provided
374- if (this .filter ? .startTime && this .filter .endTime ) {
375- params .append (' start_time' , this .filter .startTime );
376- params .append (' end_time' , this .filter .endTime );
377- }
378-
379369 let query = ` ${ getApiBaseURL ()} /pipeline/scms?${ params .toString ()} ` ;
380370
381371 let response;
Original file line number Diff line number Diff line change @@ -189,7 +189,8 @@ export default {
189189 <li>Method A (Config file): Stores token locally, secure for local development</li>
190190 <li>Method B (Environment variables): Better for CI/CD pipelines and containers</li>
191191 </ul>
192- `
192+ ` ,
193+ code: " "
193194 },
194195 {
195196 title: " Authenticate (Method A - Config File)" ,
You can’t perform that action at this time.
0 commit comments