diff options
author | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2025-05-12 02:32:28 -0400 |
---|---|---|
committer | Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> | 2025-05-12 02:32:28 -0400 |
commit | 259aaed6bdb77872c40d5c1ea63af741eb52fd4c (patch) | |
tree | aaded987a8eff9d6163c7351b5545b44b75c8792 /src/client/views/nodes/DataVizBox/DocCreatorMenu/Backend/TemplateManager.ts | |
parent | 5be235c8ca1b4ad5d499fac96133e77c773b7c6d (diff) |
styleref working hackily
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DocCreatorMenu/Backend/TemplateManager.ts')
-rw-r--r-- | src/client/views/nodes/DataVizBox/DocCreatorMenu/Backend/TemplateManager.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/DocCreatorMenu/Backend/TemplateManager.ts b/src/client/views/nodes/DataVizBox/DocCreatorMenu/Backend/TemplateManager.ts index 760940127..6fcca7e30 100644 --- a/src/client/views/nodes/DataVizBox/DocCreatorMenu/Backend/TemplateManager.ts +++ b/src/client/views/nodes/DataVizBox/DocCreatorMenu/Backend/TemplateManager.ts @@ -9,7 +9,7 @@ import { TemplateMenuAIUtils } from './TemplateMenuAIUtils'; export type Conditional = { field: string; - operator: '=' | '>' | '<'; + operator: '=' | '>' | '<' | 'contains'; condition: string; target: string; attribute: string; |