Fix model loading in code-owners-banner

Due to a misnamed method the plugin status and branch config were not
loaded from the banner. This has only surfaced as a problem after
change 321821 changed the reply dialog to render lazily. Until then the
banner was lucky that other components would load the required data into
the model without having to do that itself.

Google-Bug-Id: b/204446219
Change-Id: If7f9a468b105f70df677ffb46d238eef76c3c3d7
diff --git a/ui/code-owners-banner.js b/ui/code-owners-banner.js
index 1aa9e58..9bbf64f 100644
--- a/ui/code-owners-banner.js
+++ b/ui/code-owners-banner.js
@@ -184,7 +184,7 @@
     banner.pluginStatus = status;
   }
 
-  _loadDataAfterStateChanged() {
+  loadPropertiesAfterModelChanged() {
     this.modelLoader.loadPluginStatus();
     this.modelLoader.loadBranchConfig();
   }