Display correct Local Time with DST Change

This Javascript reportedly pulls the browser time zone:

Intl.DateTimeFormat().resolvedOptions().timeZone

Edit: with the Javascript bridge, this becomes:

    from anvil.js.window import Intl
    
    time_zone = Intl.DateTimeFormat().resolvedOptions().timeZone
    self.label_1.text = time_zone