Skip to content

Commit

Permalink
Add lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
timja committed Sep 23, 2024
1 parent 6dfae9c commit 972f591
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
https://github.com/jenkins-infra/pipeline-library/
*/

@Library('pipeline-library@pull/883/head') _

buildPlugin(
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
configurations: [
Expand Down
5 changes: 3 additions & 2 deletions plugin/src/main/js/samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ export function addSamplesWidget(editor, editorId, samplesUrl) {

if ($('#workflow-editor-wrapper .samples').length) {
// Already there.
return;
return
}
var blah = ""

var $aceEditor = $('#' + editorId);
var $aceEditor = $("#" + editorId);
var sampleSelect = $('<select></select>');

sampleSelect.append('<option >try sample Pipeline...</option>');
Expand Down

0 comments on commit 972f591

Please sign in to comment.