From 44f882d6885a23ab5291752f12211da7c5b08367 Mon Sep 17 00:00:00 2001 From: Andrii Podanenko Date: Thu, 11 Apr 2024 15:34:40 +0300 Subject: [PATCH 1/4] fix: Try 1 https://yusaslackinstance.slack.com/archives/C03E6SQQ0Q5/p1712838279285159?thread_ts=1712750924.280789&cid=C03E6SQQ0Q5 --- openy.install | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/openy.install b/openy.install index 55a48e1c1f..5ab93d79a0 100644 --- a/openy.install +++ b/openy.install @@ -92,6 +92,13 @@ function openy_update_dependencies() { ], ]; + // Run lb_accordion config import after ws_event_update_9020 enabled smart_date modules. + $dependencies['lb_accordion'] = [ + 9020 => [ + 'ws_event' => 9020, + ], + ]; + return $dependencies; } From 1d14cfc9e52528147e71a8a46cdc59b4f48f2700 Mon Sep 17 00:00:00 2001 From: Andrii Podanenko Date: Thu, 11 Apr 2024 15:35:18 +0300 Subject: [PATCH 2/4] Update openy.install --- openy.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openy.install b/openy.install index 5ab93d79a0..dc2ac3beff 100644 --- a/openy.install +++ b/openy.install @@ -94,7 +94,7 @@ function openy_update_dependencies() { // Run lb_accordion config import after ws_event_update_9020 enabled smart_date modules. $dependencies['lb_accordion'] = [ - 9020 => [ + 9002 => [ 'ws_event' => 9020, ], ]; From 312e4b48cb2ebce867daa5b03f87502c62d96682 Mon Sep 17 00:00:00 2001 From: Avi Schwab Date: Thu, 11 Apr 2024 11:55:44 -0500 Subject: [PATCH 3/4] Add dependency on lb_cards_update_9008 --- openy.install | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openy.install b/openy.install index dc2ac3beff..a604346159 100644 --- a/openy.install +++ b/openy.install @@ -98,7 +98,11 @@ function openy_update_dependencies() { 'ws_event' => 9020, ], ]; - + $dependencies['lb_grid_icon'] = [ + 9002 => [ + 'lb_cards' => 9008, + ], + ]; return $dependencies; } From 64c95a3b55f4cfc8e1a17e2aceb53528dfc1dfa8 Mon Sep 17 00:00:00 2001 From: Avi Schwab Date: Thu, 11 Apr 2024 12:18:11 -0500 Subject: [PATCH 4/4] Update openy.install --- openy.install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/openy.install b/openy.install index a604346159..95d45f259b 100644 --- a/openy.install +++ b/openy.install @@ -103,6 +103,11 @@ function openy_update_dependencies() { 'lb_cards' => 9008, ], ]; + $dependencies['lb_carousel'] = [ + 9002 => [ + 'lb_cards' => 9008, + ], + ]; return $dependencies; }