Last active
February 23, 2022 02:46
-
-
Save zakhardage/8980e64d9f15fdcef48fb83863829d47 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// change line 108 from | |
{% for line_item in line_items_in_shipment %} | |
// to | |
{% assign line_items_by_sku = line_items_in_shipment | sort:'sku' %} | |
{% for line_item in line_items_by_sku %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment