-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Plumbs UpdateActivity and DeleteActivity into the app #3887
Conversation
"label": "Delete a property", | ||
"subtitle": "Delete Property" | ||
} | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is duplicated.
"form": { | ||
"label": "Delete activity" | ||
} | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's make sure this gets added to the SDK component schemas.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -163,4 +163,12 @@ export const DefaultMenuSchema: MenuUISchema = { | |||
label: formatMessage('Emit a telemetry track event'), | |||
submenu: [SubmenuNames.Debugging], | |||
}, | |||
[SDKKinds.UpdateActivity]: { | |||
label: formatMessage('Update activity'), | |||
submenu: [SubmenuNames.PropertyManagement], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this in the right submenu?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There wasn't an exiting menu that felt great. Any ideas?
@cwhitten we are going to retire the |
How should we use these new actions? We need to get the activity ID from an earlier activity, but the suggested dialog.lastActivityId doesn't exist. |
…t#3887) * Plumbs UpdateActivity and DeleteActivity into the app * Remove duplicate entry
closes #3874
note: it still isn't clear where UI is getting component information (label, title, description, etc)