-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
fix: button destroy states in 3000 #19086
Conversation
📸 UI snapshots have been updated1 snapshot changes in total. 0 added, 1 modified, 0 deleted:
Triggered by this commit. |
@@ -78,7 +80,7 @@ export function AppManagementView({ | |||
} | |||
data-attr="plugin-uninstall" | |||
> | |||
Uninstall | |||
Uninstall me |
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.
why the "me", in any case this is the older UI that will be replaced by pipeline folder
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.
Whoops! That was just me testing to make sure I was looking at the correct button. Removed in the latest commit
Size Change: +237 B (0%) Total Size: 1.83 MB ℹ️ View Unchanged
|
📸 UI snapshots have been updated1 snapshot changes in total. 0 added, 1 modified, 0 deleted:
Triggered by this commit. |
283b3a9
to
14bdb74
Compare
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.
The hook needs to be adapted to the now multivariate feature flag. Otherwise this looks good.
frontend/src/scenes/instance/SystemStatus/InstanceConfigSaveModal.tsx
Outdated
Show resolved
Hide resolved
frontend/src/scenes/settings/organization/OrganizationDangerZone.tsx
Outdated
Show resolved
Hide resolved
Co-authored-by: Thomas Obermüller <[email protected]>
…dal.tsx Co-authored-by: Thomas Obermüller <[email protected]>
Co-authored-by: Thomas Obermüller <[email protected]>
Co-authored-by: Thomas Obermüller <[email protected]>
Co-authored-by: Thomas Obermüller <[email protected]>
…ne.tsx Co-authored-by: Thomas Obermüller <[email protected]>
Co-authored-by: Thomas Obermüller <[email protected]>
Co-authored-by: Thomas Obermüller <[email protected]>
Co-authored-by: Thomas Obermüller <[email protected]>
Problem
We do not support the
type=primary
&status=danger
combo in PostHog 3000 (yet... until we decide on the new button system)Changes
type="secondary"
only in 3000Needed to change one place we had two danger buttons next to each other because we no longer have a primary & secondary danger button. Decided to use tertiary instead, for now
How did you test this code?
By 👁️