oh, I see we already have a fix in dev version within this task
https://www.drupal.org/project/commerce_klarna_checkout/issues/3466923
π
Fix the failing tests
Fixed
@jsacksick please create new release)
absent "return $instance;" creates fatals.
thanks
andriic β created an issue.
hi @joachim
I've updated MR to make it work with 3.1 version.
could you pls change target branch in MR to 3.1.x ?
tnx
andriic β made their first commit to this issueβs fork.
andriic β created an issue.
We had the same issue.
Our database version was updated from mariadb:10.0 to mariadb:10.3.
row_format of tables was changed:
ALTER TABLE commerce_store_field_data ROW_FORMAT=DYNAMIC;
ALTER TABLE profile__address ROW_FORMAT=DYNAMIC;
ALTER TABLE profile_revision__address ROW_FORMAT=DYNAMIC;
And columns were dropped before running update.
ALTER TABLE commerce_store_field_data DROP COLUMN address__address_line3;
ALTER TABLE profile__address DROP COLUMN address_address_line3;
ALTER TABLE profile_revision__address DROP COLUMN address_address_line3;
andriic β changed the visibility of the branch 3449669-add-states to hidden.
andriic β created an issue.
andriic β created an issue.
andriic β created an issue.
change the value in input element and run. raw example
const input = element.querySelector('input');
input.value += 1;
input.dispatchEvent(new window.Event('change', { bubbles: true }));
setTimeout(() => {
input.dispatchEvent(new window.Event('blur', { bubbles: true }));
}, 200);
Looks good! Thanks
Rerolled the patch from #36 for Durpal 10.2.2.
+
andriic β created an issue.
Thanks @paulmartin84!
patch is working, paragraphs correctly updated after accepting translation.
MR was created.
and patch here for info
andriic β created an issue.
branch was created.
and here's the patch from it.
andriic β created an issue.
@TLWatson issue with q param fixed here #3031544 π Ajax facet adds q and _wrapper_format to the browser URL Needs review
Hi @smulvih2.
Incorrect rows in results.
Steps to reproduce bug with incorrect offset:
1) Create new view with CSV data export.
2) set path, filename. Export Method: Batch, size 100, limit 101.
3) export with drush command
drush vde_drush:views-data-export view_name display_id /filepath/test.csv --yes
Result: in exported file you will have header more than 200 rows.
As I previosuly mentioned, I've changed data in queue item from views object to view_id and display_id.
This will allow use to execute query each time with correct offset and items per page.
Issue with queue items:
Queue can consists of more then one export when it's running in the same time.
For example you have a cron which use drush to export and at the same time you doing it manually from drush command.
That's why I've removed line
- $total_queue_items = $queue->numberOfItems() * $items_per_batch - $items_per_batch;
which makes no sense if there are more than one batch at the same time.
andriic β created an issue.
Thanks @klausi, Looks good!
Updated patch. I found an issue where in exported XML file last close tag was missed.
andriic β created an issue.