File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -290,7 +290,8 @@ export const FrameTree: React.FC<FrameTreeProps> = React.memo(
290
290
let name_leaf = name ;
291
291
let actions_leaf = actions ;
292
292
if (
293
- spec . name === "TimeTravel" &&
293
+ typeof spec . name != "string" &&
294
+ spec . name ?. id === "labels.timetravel" &&
294
295
! ( actions instanceof TimeTravelActions )
295
296
) {
296
297
if ( path_leaf . slice ( path_leaf . length - 12 ) != ".time-travel" ) {
Original file line number Diff line number Diff line change @@ -157,6 +157,8 @@ export const labels = defineMessages({
157
157
description : "The button to engage with the AI Assistant dialog" ,
158
158
} ,
159
159
timetravel : {
160
+ // DO NOT CHANGE THIS labels.timetravel ID!!!! It is explcitly used in frontend/frame-editors/frame-tree/frame-tree.tsx
161
+ // This caused a massive bug when i18n was first merged.
160
162
id : "labels.timetravel" ,
161
163
defaultMessage : "TimeTravel" ,
162
164
description :
Original file line number Diff line number Diff line change 1
1
/* autogenerated by the update_version script */
2
- exports . version = 1721605026 ;
2
+ exports . version = 1724777878 ;
You can’t perform that action at this time.
0 commit comments