We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e604b60 commit 4695b9dCopy full SHA for 4695b9d
newIDE/app/src/MainFrame/index.js
@@ -582,7 +582,8 @@ const MainFrame = (props: Props) => {
582
: kind === 'layout events'
583
? name + ` ${i18n._(t`(Events)`)}`
584
: kind === 'custom object'
585
- ? name.split('::')[1] + ` ${i18n._(t`(Object)`)}`
+ ? name.split('::')[2] ||
586
+ name.split('::')[1] + ` ${i18n._(t`(Object)`)}`
587
: name;
588
const tabOptions =
589
kind === 'layout'
0 commit comments