This file contains hidden or 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
| # Warden shell command, usage: | |
| # `W php artisan` to execute `php artisan` inside warden | |
| # Or `W` to enter the live shell. | |
| W() { | |
| if [ $# -eq 0 ]; then | |
| warden shell | |
| else | |
| warden env exec php-fpm "$@" | |
| fi | |
| } |
This file contains hidden or 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
| --- a/view/frontend/web/template/billing-address/details.html 2022-11-04 08:45:07.416589211 +0100 | |
| +++ a/view/frontend/web/template/billing-address/details.html 2022-11-04 08:44:24.652000000 +0100 | |
| @@ -8,7 +8,8 @@ | |
| <text args="currentBillingAddress().prefix"></text> <text args="currentBillingAddress().firstname"></text> | |
| <text args="currentBillingAddress().middlename"></text> | |
| <text args="currentBillingAddress().lastname"></text> <text args="currentBillingAddress().suffix"></text><br> | |
| - <text args="currentBillingAddress().street.join(', ')" if="currentBillingAddress().street"></text><br> | |
| + <text args="currentBillingAddress().street.join(', ')" if="currentBillingAddress().street"></text> | |
| + <text args="tigHouseNumber()"></text><br/> | |
| <text args="currentBillingAddress().city "></text>, <span text="currentBillingAddress().region"></span> |