Compare commits

..

No commits in common. "b62e41966c5b08a5d3b1408f38129afff560d420" and "3cc37bea3005abe0053daed258548a4d44dbebc5" have entirely different histories.

3 changed files with 2 additions and 8 deletions

View file

@ -5,12 +5,6 @@ All notable changes to Tailbone will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## v0.22.11 (2025-09-20)
### Fix
- avoid error when row object missing field
## v0.22.10 (2025-09-20) ## v0.22.10 (2025-09-20)
### Fix ### Fix

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "Tailbone" name = "Tailbone"
version = "0.22.11" version = "0.22.10"
description = "Backoffice Web Application for Rattail" description = "Backoffice Web Application for Rattail"
readme = "README.md" readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]

View file

@ -578,7 +578,7 @@ class Grid(WuttaGrid):
try: try:
return obj[column_name] return obj[column_name]
except (TypeError, KeyError): except TypeError:
pass pass
def render_currency(self, obj, column_name): def render_currency(self, obj, column_name):