Eugen Konkov

Results 175 comments of Eugen Konkov

Ok. I will provide it. Would be cool if @jjn1056 provide more description on underlaid problem about why we can not clone current `$schema`

I do not wait tests, just patch local copy of code and use it. I do not write tests for patched code because I do not know: is this behavior...

Hi, @mohawk2. I found the way to reproduce this easily: ```diff t/lib/Local/Schema/Result/ArtistCd.pm @@ -1,7 +1,7 @@ package Local::Schema::Result::ArtistCd; use base qw/DBIx::Class::Core/; -__PACKAGE__->table('artist_cd'); +__PACKAGE__->table('artist_cd_not_match'); __PACKAGE__->add_columns( artist_fk => { data_type => 'integer',...

A bit of debug information. From the below we can see that `_schema_from_database` returns `ArtistCdNotMatch` class instead of defined ResultSet `ArtistCd`. Also I noticed that there is no `ViewTest`, which...

@jjn1056 Thank you. You do not need access to any repo. Everything required to reproduce the issue is inside this PR. ### Let me provide more context on the problem....

Furthermore `sync()` does not work if component was initialized like ``` new Autocomplete('#tszz',{ valueField: 'id', labelField: 'name', ... ``` This happens because `const settings = get_settings ? getSettings(self.input, { delimiter:...

Ok. `user_settings` are honored only on line 117: ``` const settings = getSettings( input, user_settings ); ``` and are ignored here: ``` const settings = get_settings ? getSettings( self.input, {delimiter:self.settings.delimiter}...