Skip to content

Commit 949013c

Browse files
committed
fix(Expandable): Run with lower priority than ngIf
ngIf runs at 600 priority and this was running at 1000. Changing it to 599 should allow ngIf to live with ui-grid and expandable. Fixes #2804
1 parent 7c5cdca commit 949013c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/expandable/js/expandable.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@
281281
function (uiGridExpandableService, $templateCache) {
282282
return {
283283
replace: true,
284-
priority: 1000,
284+
priority: 599,
285285
require: '^uiGrid',
286286
scope: false,
287287
compile: function () {

0 commit comments

Comments
 (0)