-
Notifications
You must be signed in to change notification settings - Fork 17
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: Apply saved filters #1528
Conversation
e0662c5
to
b6d2647
Compare
In ChatSearch
968c857
to
6b6bfef
Compare
It's never used and it's not worth the real estate.
08c0b08
to
a946114
Compare
@@ -221,6 +221,15 @@ export default { | |||
}, | |||
}, | |||
methods: { | |||
getAppMapState() { | |||
return this.$refs.vappmap?.getState(); |
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.
FYI, I've noticed something's up with the optional chaining operator. It should transpile correctly into the distribution bundle, but it throws an error in Storybook.
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 used in a method, so it should be fine.
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.
Ok - do I need to change it or not? :-)
🎉 This PR is included in version @appland/components-v3.24.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Description
The primary change in this PR is to enable the ChatSearch page to accept and handle
savedFilters
, so that filter can be synchronized with the container environment (e.g. code editor).Basic "Navie" styling is also added.
The "Hide unlabeled" filter is removed from the UI, because it consumes vertical space and hasn't proven to be useful.
AppMap uploading / sharing is removed, since this feature is no longer supported by the server or by the IDE plugins.
Dependency of
getappmap/vscode-appland#859