Compare commits

..

2 commits

3 changed files with 8 additions and 2 deletions

View file

@ -5,6 +5,12 @@ 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/)
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)
### Fix

View file

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

View file

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