-
Notifications
You must be signed in to change notification settings - Fork 4
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
Move directory api to commons ui #2103
Conversation
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.
Missing update of @gridsuite/commons-ui
in package.json
dependencies.
export function getIdOrValue(value: any) { | ||
return typeof value !== 'string' ? value?.id ?? null : value; | ||
} | ||
|
||
export function getLabelOrValue(value: { id: string; label: string } | string) { | ||
export function getLabelOrValue(value: any) { |
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 did you remove typescript check?
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.
Compilation errors, too hard to properly type, seen with @flomillot
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.
okay, will fix the any
in another PR
depends on gridsuite/commons-ui#460