improvement(triggers): moved save configuration above instructions for better visbiility, fixed styling inconsistencies#2699
Merged
waleedlatif1 merged 1 commit intostagingfrom Jan 7, 2026
Conversation
…r better visbiility, fixed styling inconsistencies
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile SummaryThis PR improves UX by repositioning the "Save Configuration" button above setup instructions across all 84 trigger configurations, making it more visible and accessible to users. Additionally, the button component styling was refined by removing hardcoded dimensions (
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant TriggerUI as Trigger Configuration UI
participant TriggerSave as TriggerSave Component
participant Store as SubBlock Store
participant API as Webhook API
User->>TriggerUI: Opens trigger configuration
TriggerUI->>TriggerUI: Renders triggerSave before instructions
Note over TriggerUI: Save button now appears above setup instructions
User->>TriggerSave: Fills configuration fields
TriggerSave->>Store: Updates field values
User->>TriggerSave: Clicks "Save Configuration"
TriggerSave->>TriggerSave: Validates required fields
TriggerSave->>Store: Aggregates trigger config
TriggerSave->>API: POST webhook configuration
API-->>TriggerSave: Returns webhookId
TriggerSave->>Store: Saves webhookId and config
TriggerSave->>TriggerSave: Sets button state to "Saved"
Note over TriggerSave: Button shows green background with !important overrides
TriggerSave-->>User: Visual feedback (green button)
alt Delete Configuration
User->>TriggerSave: Clicks delete button
TriggerSave->>User: Shows confirmation modal
User->>TriggerSave: Confirms deletion
TriggerSave->>API: DELETE webhook configuration
API-->>TriggerSave: Success
TriggerSave->>Store: Clears webhookId and config
TriggerSave-->>User: Configuration deleted
end
|
waleedlatif1
added a commit
that referenced
this pull request
Jan 8, 2026
…r better visibility, fixed styling inconsistencies (#2699)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
save configurationabove instructions for better visibility, fixed styling inconsistencieType of Change
Testing
Tested manually
Checklist