Skip to content

Commit ae848f8

Browse files
committed
Ensure that mode hook is executed last
Signed-off-by: Evan Lezar <[email protected]>
1 parent 0e13c34 commit ae848f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/runtime/runtime_factory.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ func supportedModifierTypes(mode string) []string {
124124
return []string{"mode"}
125125
case "csv":
126126
// For CSV mode we support mode and feature-gated modification.
127-
return []string{"mode", "feature-gated"}
127+
return []string{"feature-gated", "mode"}
128128
default:
129-
return []string{"mode", "graphics", "feature-gated"}
129+
return []string{"feature-gated", "graphics", "mode"}
130130
}
131131
}

0 commit comments

Comments
 (0)