@@ -54,8 +54,8 @@ export default {
5454 this .composition .on (' add' , this .addLadTable );
5555 this .composition .on (' remove' , this .removeLadTable );
5656 this .composition .on (' reorder' , this .reorderLadTables );
57- this .openmct .time .on (' timeSystem ' , this .setTimesystem );
58- this .setTimesystem (this .openmct .time .timeSystem ());
57+ this .openmct .time .on (' timeSystemChanged ' , this .setTimeSystem );
58+ this .setTimeSystem (this .openmct .time .getTimeSystem ());
5959 this .composition .load ();
6060 },
6161 beforeUnmount () {
@@ -66,7 +66,7 @@ export default {
6666 c .composition .off (' add' , c .addCallback );
6767 c .composition .off (' remove' , c .removeCallback );
6868 });
69- this .openmct .time .off (' timeSystem ' , this .setTimesystem );
69+ this .openmct .time .off (' timeSystemChanged ' , this .setTimeSystem );
7070 },
7171 methods: {
7272 addLadTable (domainObject ) {
@@ -102,7 +102,7 @@ export default {
102102 this .ladTableObjects [reorderEvent .newIndex ] = oldComposition[reorderEvent .oldIndex ];
103103 });
104104 },
105- setTimesystem (timesystem ) {
105+ setTimeSystem (timesystem ) {
106106 this .timesystem = timesystem .name ;
107107 },
108108 addTelemetryObject (ladTable ) {
0 commit comments