SiteTree in ModelAdmim - Update URL Button has no text

**Silverstripe Version: 4.3.3 **

Question: The Button that say “Update URL” when you change the Title has no Text in ModelAdmin

the button appears but it has no Text. Why?

Hello!
You need to add this in your ModelAdmin

use SilverStripe\View\Requirements;

protected function init() {

    parent::init();

    Requirements::add_i18n_javascript('silverstripe/cms: client/lang', false, true);

}
1 Like

Awesome. I’ve given up on that one.

1 Like