Previewing translatable nodes can lead to data loss issue fixed.
1 open thread
Closes #2907091
Merge request reports
Activity
48 57 * The entity display repository. 49 58 * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory 50 59 * The configuration factory. 60 * @param \Drupal\Core\Language\LanguageManagerInterface $language_manager 61 * The language manager. *. 51 62 */ 52 public function __construct(EntityDisplayRepositoryInterface $entity_display_repository, ConfigFactoryInterface $config_factory) { 63 public function __construct(EntityDisplayRepositoryInterface $entity_display_repository, ConfigFactoryInterface $config_factory, LanguageManagerInterface $language_manager) { 53 64 $this->entityDisplayRepository = $entity_display_repository; 54 65 $this->configFactory = $config_factory; 66 $this->languageManager = $language_manager;
Please register or sign in to reply