We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcaad02 commit 7339b8eCopy full SHA for 7339b8e
projects/libs/flex-layout/flex/flex-order/flex-order.ts
@@ -64,6 +64,14 @@ export class FlexOrderDirective extends BaseDirective2 implements OnChanges {
64
}
65
66
protected override styleCache = flexOrderCache;
67
+
68
+ override updateWithValue(input: string) {
69
+ super.updateWithValue(input);
70
71
+ if (this.parentElement) {
72
+ this.marshal.triggerUpdate(this.parentElement, 'layout-gap');
73
+ }
74
75
76
77
const flexOrderCache: Map<string, StyleDefinition> = new Map();
0 commit comments