Order Tag on packing slip doesn't show

I’m trying to add an order tag to print on the packing slip - we print through Order Printer so I’ve edited the template through that. But when printing the packing slip, it just shows “Tag:” without the actual words from the order tag.

The code looks like this:

### Shipping Details
  
    

    **Tags:{{ order.tags }}** 

      

    **{{ shipping_address.name }}**

And looks like this when printed:

Try just using {{ tags }}

On notification variables you don’t need the “order.”, so you probably don’t need it there as well.

Reference: https://help.shopify.com/en/manual/orders/notifications/email-variables

That worked a treat! Thank you!!