RdvQuery from PostIt

This commit is contained in:
Paul Schneider 2026-08-31 03:37:09 +01:00
commit 9d97994e76
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
19 changed files with 912 additions and 8 deletions

View file

@ -46,7 +46,8 @@ namespace Yavsc.Models.Workflow
{
get
{
string type = ResourcesHelpers.GlobalLocalizer[this.GetType().Name];
var localizer = ResourcesHelpers.GlobalLocalizer;
string type = localizer is null ? this.GetType().Name : localizer[this.GetType().Name];
return $"{_description} {type}";
}
set