When to reuse cut
and when to find it again?
#1470
Replies: 3 comments 3 replies
-
Something interesting:
|
Beta Was this translation helpful? Give feedback.
-
Putting this on hold so I can get more info |
Beta Was this translation helpful? Give feedback.
-
Hey there, When you call So whether or not you need to re-issue a |
Beta Was this translation helpful? Give feedback.
-
A change to the MudBlazor MudDialog was made in https://github.com/MudBlazor/MudBlazor/pull/8964/files which changed asynchrony and caused my tests to fail with
Bunit.Rendering.ComponentNotFoundException : A component of type EditNoteDialog was not found in the render tree.
.but making these changes fixes it:
Is this the preferred way of doing it:
var cut = () => layout.FindComponent<DataPointView>();
? We've made several similar changes in the MudBlazor codebase but want to double check that it's supported!Beta Was this translation helpful? Give feedback.
All reactions