Skip to content

Commit 88fe53d

Browse files
authored
Merge pull request #189 from mawinter69/JENKINS-55413
[JENKINS-55413] allow to delete newly added lines
2 parents ae6c602 + 1bb0be6 commit 88fe53d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

src/main/resources/com/michelin/cio/hudson/plugins/rolestrategy/RoleStrategyConfig/assign-global-roles.jelly

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
table.insertBefore(copy,table.childNodes[table.rows.length-1]);
130130
</j:if>
131131
tableHighlighter.scan(copy);
132-
Behaviour.applySubtree(findAncestor(table,"TABLE"));
132+
Behaviour.applySubtree(findAncestor(table,"TABLE"), true);
133133
});
134134
})();
135135

src/main/resources/com/michelin/cio/hudson/plugins/rolestrategy/RoleStrategyConfig/assign-project-roles.jelly

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
table.insertBefore(copy,table.childNodes[table.rows.length-1]);
131131
</j:if>
132132
tableHighlighter.scan(copy);
133-
Behaviour.applySubtree(findAncestor(table,"TABLE"));
133+
Behaviour.applySubtree(findAncestor(table,"TABLE"), true);
134134
});
135135
})();
136136

src/main/resources/com/michelin/cio/hudson/plugins/rolestrategy/RoleStrategyConfig/assign-slave-roles.jelly

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
table.insertBefore(copy,table.childNodes[table.rows.length-1]);
132132
</j:if>
133133
tableHighlighter.scan(copy);
134-
Behaviour.applySubtree(findAncestor(table,"TABLE"));
134+
Behaviour.applySubtree(findAncestor(table,"TABLE"), true);
135135
});
136136
})();
137137

src/main/resources/com/michelin/cio/hudson/plugins/rolestrategy/RoleStrategyConfig/manage-global-roles.jelly

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
table.insertBefore(copy,table.childNodes[table.rows.length-2]);
158158
</j:if>
159159
tableHighlighter.scan(copy);
160-
Behaviour.applySubtree(findAncestor(table,"TABLE"));
160+
Behaviour.applySubtree(findAncestor(table,"TABLE"), true);
161161
});
162162
})();
163163

src/main/resources/com/michelin/cio/hudson/plugins/rolestrategy/RoleStrategyConfig/manage-project-roles.jelly

+1-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
table.insertBefore(copy,table.childNodes[table.rows.length-2]);
182182
</j:if>
183183
projecttableHighlighter.scan(copy);
184-
Behaviour.applySubtree(findAncestor(table,"TABLE"));
184+
Behaviour.applySubtree(findAncestor(table,"TABLE"), true);
185185
});
186186
})();
187187

src/main/resources/com/michelin/cio/hudson/plugins/rolestrategy/RoleStrategyConfig/manage-slave-roles.jelly

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
table.insertBefore(copy,table.childNodes[table.rows.length-2]);
185185
</j:if>
186186
slavetableHighlighter.scan(copy);
187-
Behaviour.applySubtree(findAncestor(table,"TABLE"));
187+
Behaviour.applySubtree(findAncestor(table,"TABLE"), true);
188188
});
189189
})();
190190

0 commit comments

Comments
 (0)