-
### Extension Version
v2.33.0
### VS Code Version
Version: 1.95.1
Commit: 65edc4939843c90c34d61f4ce11704f09d3e5cb6
Date: 2024-10-31T05:14:54.222Z
Electron: 32.2.1
ElectronBuildId: 1042771…
-
I try to use nested functions in my fixtures and receive error.
Fixture:
```yaml
data: ''
```
Error:
```
Nelmio\Alice\Throwable\Exception\FixtureBuilder\ExpressionLanguage\MalformedFunc…
ZhukV updated
2 months ago
-
### Vue version
3.4.35
### Link to minimal reproduction
https://play.vuejs.org/#eNp9kcFuwjAMhl/FyoVVQi2U7VI6pG3isE0a0+BG0FSKYWVtEiVph4T67nNSDThMXKLY32/rt31kD0qFTY0sYanJdaEsGLS1mnBRVEpqC0fQuIU…
-
References to nested imports lead to errors. For instance, a.b.Feature is resolved to a single import a.b instead of 2 nested imports. It appears that the Import class is currently not suited for nest…
-
### Package
Carbon for IBM Products
### Description
When using NoDataEmptyState as a nested component, a hydration error is thrown
![Image](https://github.com/user-attachments/assets/f808c47f-e7a8…
-
- In this project, many components rely heavily on deeply nested props being passed down through multiple layers. This approach can make the codebase harder to maintain, as it creates dependencies on …
-
### Is there an existing issue for this?
- [x] I have searched the existing issues
### Describe the bug
I am experiencing an issue with custom validation in a Blazor `EditForm` when using a nested …
-
I have this use case, where `expr` is a parser with `(Token, Span)` as the input, and the surrounding function returns a parser that takes in `(StringToken, Span)
```rs
expr.nested_in(select_ref! …
-
My form:
``` ruby
class RegistrationForm < ActiveForm::Base
self.main_model = :user
attributes :email, :password
association :company do
attributes :name, :email, :phone
end
end
```
Wh…
-
Consider the following data model:
```cs
public interface IHavePet where TPet : IPet
{
ICollection Pets { get; set; }
}
public interface IPet
{
public string Name { get; set; }
}
…