-
Notifications
You must be signed in to change notification settings - Fork 373
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
Improve array related styling of renderer #1146
Improve array related styling of renderer #1146
Conversation
* Use cell-based structure, make toolbar a 2nd header row * Extract DeleteDialog * Remove validation icons * Extract Delete Dialog * Adapt createControlElement in UI schema generator
@@ -238,7 +238,7 @@ test('evalEnablement disable invalid case', t => { | |||
t.is(evalEnablement(uischema, data), true); | |||
}); | |||
|
|||
test('evalEnablement disable invalid case based on schema condition', t => { | |||
test.skip('evalEnablement disable invalid case based on schema condition', t => { |
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.
same here
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.
Fixed the previous one, but this on is failing.
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.
did it work before the fix? Is this fixed with the changes in #1148?
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.
Should be fixed, the test had wrong expectations.
The array renderer looks good. |
09511fc
to
e241d33
Compare
I don't think this is directly related to the array renderers but rather to the change event being fired too often and for me the 'lagginess' also happens in other examples. We should probably debounce change events, but that should be part of a different issue then. |
Can you open a new issue for the lagginess? |
See #1150. |
e241d33
to
540c3f9
Compare
540c3f9
to
d01cdfa
Compare
Also fixes some minor test-related issues