-
Notifications
You must be signed in to change notification settings - Fork 367
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: [M3-7249] - Linode Landing flickering #9836
Merged
bnussman-akamai
merged 16 commits into
linode:develop
from
bnussman-akamai:M3-7249-fix-linode-landing-flickering
Oct 25, 2023
Merged
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
ee56a25
dont block children from rendering
bnussman a87259a
Added changeset: Linodes Landing flickering
bnussman abaf5ae
clean up more
bnussman e8c1be5
fix preference toggle
bnussman 473c710
comment and clean up types
bnussman ac73415
remove ambiguous test
bnussman eaecf6a
show children after inital fetches
bnussman 3966d0b
fix AuthenticationWrapper logic and test
bnussman ec5f134
revert change
bnussman 91e98b1
removed unused state
bnussman 67adbf4
fix lish
bnussman bd1967d
fix AuthenticationWrapper more
bnussman 2832482
fix flags flickering
bnussman eb7ae37
Merge branch 'develop' into M3-7249-fix-linode-landing-flickering
bnussman d8af7a1
add some e2e coverage
bnussman ab8bcfe
Update packages/manager/src/IdentifyUser.tsx
bnussman-akamai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,7 +188,6 @@ class ListLinodes extends React.Component<CombinedProps, State> { | |
<DocumentTitleSegment segment="Linodes" /> | ||
<ProductInformationBanner bannerLocation="Linodes" /> | ||
<PreferenceToggle<boolean> | ||
localStorageKey="GROUP_LINODES" | ||
preferenceKey="linodes_group_by_tag" | ||
preferenceOptions={[false, true]} | ||
toggleCallbackFnDebounced={sendGroupByAnalytic} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because we now rely on React Query's state directly, we won't debounce because React Query performs optimistic updates. I don't think this is an issue considering how and where this component is used. |
||
|
@@ -199,7 +198,6 @@ class ListLinodes extends React.Component<CombinedProps, State> { | |
}: PreferenceToggleProps<boolean>) => { | ||
return ( | ||
<PreferenceToggle<'grid' | 'list'> | ||
localStorageKey="LINODE_VIEW" | ||
preferenceKey="linodes_view_style" | ||
preferenceOptions={['list', 'grid']} | ||
toggleCallbackFn={this.changeViewInstant} | ||
|
Oops, something went wrong.
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.
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 prop was unused and did nothing