-
Notifications
You must be signed in to change notification settings - Fork 323
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
Sort assets by modified date #11820
Sort assets by modified date #11820
Conversation
🧪 Storybook is successfully deployed!📊 Dashboard:
|
# Conflicts: # app/gui/integration-test/dashboard/actions/api.ts # app/gui/integration-test/dashboard/actions/index.ts # app/gui/integration-test/dashboard/assetsTableFeatures.spec.ts # app/gui/src/dashboard/layouts/AssetsTable.tsx
@@ -519,40 +518,38 @@ function AppRouter(props: AppRouterProps) { | |||
) | |||
|
|||
return ( | |||
<FeatureFlagsProvider> |
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.
Here I only removed the FeatureFlagsProvider
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 tools part looks good to me
) => void | ||
} | ||
|
||
const flagsStore = createStore<FeatureFlags>()( | ||
const flagsStore = createStore<FeatureFlagsStore>()( | ||
persist( |
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.
@somebody1234 I found that the zustand
has native support for persisting state, wdyt?
@@ -70,18 +68,12 @@ export default function TextProvider(props: TextProviderProps) { | |||
/** Exposes a property to get localized text, and get and set the current language. */ | |||
export function useText() { | |||
const { language, setLanguage, locale } = React.useContext(TextContext) | |||
const localizedText = text.TEXTS[language] | |||
|
|||
const localizedText = text.getDictionary(language) | |||
|
|||
const getText = React.useCallback<GetText>( |
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 function is pulled off the provider, so we can now use it outside of React.
It's the backend issue, we discussed it, it requires a fix on the backend
Oh intersting. Will take a look. Guess there are some out of sync state between the @PabloBuchu is it possible though? |
# Conflicts: # app/gui/env.d.ts
Partially fixes #5430 by propagating `DataflowError`s found during statement execution out of the method. # Important Notes This change [may affect behavior](https://github.com/enso-org/enso/pull/11673/files#r1871128327) of existing methods that ignore `DataflowError` as [discussed here](https://github.com/enso-org/enso/pull/11673/files#r1871128327).
@PabloBuchu addressed the second issue. Please take a look once you have time 😊 |
# Conflicts: # app/gui/src/dashboard/components/AriaComponents/Form/components/FormError.tsx
Pull Request Description
Closes: https://github.com/enso-org/cloud-v2/issues/1611, https://github.com/enso-org/cloud-v2/issues/1602
This PR refactors the
EditableSpan
component and improve ergonomics of editing file names.Now:
Also, this PR changes the default order of assets in Cloud backend to match the order with the Local one
This PR fixes the tooltip when a project being executed by another user
CleanShot.2024-12-14.at.14.03.01.mp4
CleanShot.2024-12-14.at.14.04.01.mp4
Important Notes
Checklist
Please ensure that the following checklist has been satisfied before submitting the PR:
Scala,
Java,
TypeScript,
and
Rust
style guides. In case you are using a language not listed above, follow the Rust style guide.
or the Snowflake database integration, a run of the Extra Tests has been scheduled.