This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/linked_field.module b/linked_field.module | |
index 1bbcb82..4d513ad 100644 | |
--- a/linked_field.module | |
+++ b/linked_field.module | |
@@ -349,6 +349,11 @@ function linked_field_entity_display_build_alter(&$build, $context) { | |
// Normalize the settings. | |
$destination = isset($settings['destination']) ? $settings['destination'] : FALSE; | |
+ // Fix issue with destination as an array for layout builder. | |
+ if (is_array($destination)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/config/schema/tfa.schema.yml b/config/schema/tfa.schema.yml | |
index 0b52d63..483335a 100644 | |
--- a/config/schema/tfa.schema.yml | |
+++ b/config/schema/tfa.schema.yml | |
@@ -62,7 +62,7 @@ tfa.settings: | |
type: integer | |
label: 'TFA Flood Threshold' | |
help_text: | |
- type: string | |
+ type: label |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/formatters/tabs/tabs.js b/formatters/tabs/tabs.js | |
index c2c5b5d3..3a652060 100644 | |
--- a/formatters/tabs/tabs.js | |
+++ b/formatters/tabs/tabs.js | |
@@ -15,7 +15,7 @@ | |
// Add required fields mark to any element containing required fields | |
var direction = group_info.settings.direction; | |
- $(context).find('[data-' + direction + '-tabs-panes] details').once('fieldgroup-effects').each(function () { | |
+ $($(context).find('[data-' + direction + '-tabs-panes] details').once('fieldgroup-effects').get().reverse()).each(function () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sed -i "/^uuid:/d;/^_core:/d;/^ default_config_hash:/d" * |