- Notifications
You must be signed in to change notification settings - Fork715
fix: do not show patterns in OSS stream settings#9537
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Failed to generate code suggestions for PR |
Greptile OverviewGreptile SummaryHides the regex patterns column in the stream settings schema table for OSS builds by adding
This prevents OSS users from seeing enterprise-only features in the stream settings UI. Confidence Score: 5/5
Important Files ChangedFile Analysis
Sequence DiagramsequenceDiagram participant User participant SchemaVue as Schema.vue participant Config as config (aws-exports) participant QTable as Quasar Table User->>SchemaVue: View stream settings SchemaVue->>Config: Check config.isEnterprise Config-->>SchemaVue: Returns 'true' or 'false' alt Enterprise Build (isEnterprise == 'true') SchemaVue->>QTable: Include patterns column in columns array SchemaVue->>QTable: Render patterns cell with pattern data QTable-->>User: Show patterns column with clickable cells else OSS Build (isEnterprise != 'true') SchemaVue->>QTable: Exclude patterns column from columns array SchemaVue->>QTable: Render empty cell for patterns slot QTable-->>User: Hide patterns column end |
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.
1 file reviewed, no comments
e0ca0b9 intobranch-v0.30.0Uh oh!
There was an error while loading.Please reload this page.
No description provided.