Skip to content

Commit

Permalink
Revert change
Browse files Browse the repository at this point in the history
  • Loading branch information
timja committed Sep 23, 2024
1 parent d6f1363 commit 81f1e6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
3 changes: 0 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
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: 2 additions & 3 deletions plugin/src/main/js/samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ 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 81f1e6b

Please sign in to comment.